Servers

<p>In this section I keep notes and write&nbsp;extended tutorials on things like configuring Nginx servers, serving Drupal. Upgrading&nbsp;Ubuntu, PHP-FPM, e.t.c.&nbsp;Apache, Jboss, Tomcat and other might pop in this section as well. Basically routine tasks and solved problems I'm facing everyday.&nbsp;</p>

Photoshop How to Solve: Could not complete the Save As command because there is not enough memory (RAM)

| 53 views

The other morning I faced an issue Could not complete the Save As command because there is not enough memory (RAM)" while trying to save a .pdf files using Adobe Photoshop. I spent a couple of hours before finally found the solution: The solution involves another problem - Error: An integer between 96 and 8 is required  When you try to access the Performance preferences (Edit > Preferences > Performance), Photoshop displays the error message: An integer between 96 and 8 is required.…


Let's Encrypt Fix for "produced an unexpected error: Problem binding to port 443: Could not bind to IPv4 or IPv6.. Skipping."

| 4 views

The other day I faced this problem - server was not automatically renewing Let's Encrypt certificate:   produced an unexpected error: Problem binding to port 443: Could not bind to IPv4 or IPv6.. Skipping.  It took me some time to debug and find a solution, which is as easy as shutting down nginx server and then renewing lets encrypt (Solution found here: Trying to renew cert on nginx but getting “Problem binding to port 443: Could not bind to IPv4 or IPv6”) sudo /etc/init.d/nginx stop…


How To Fix "gzip is failing for js files" Nginx

| 6 views

From Drupal Reports status page I noticed gzip is failing for js files error The web servers configuration will need to be adjusted. In most cases make sure that the webroots .htaccess file still contains this section "Rules to correctly serve gzip compressed CSS and JS files". Certain default web server configurations (nginx) do not gzip HTTP/1.0 requests. If you are using cloudfront you will have to add metadata to the .gz files. There are some other options if using cloudfront. For Nginx…


How To Redirect in Nginx all Domain Name Versions to https://www

| 2 views

As you might already know search engines (Google) sees www.domain.com and domain.com as two separate domain names. If you are not using 301 redirects (www to non-www or vice verse)you might get penalized for duplicate content.  In Ngnix, there is a simple solution how to make such redirect happen, see: Ngnix Redirect To WWW Now, things get a bit complicated when https versions are involved. See: Linode: How To Secure Nginx with Let's Encrypt on Ubuntu 12.04 Once your website has https…


Amazon OneLink? No, Thanks - Improve Page Load times by removing Third Party scripts

| 1 views

I felt very enthusiastic once Amazon announced OneLink, it seemed like a missing puzzle to serve international customers and boost earnings as an Amazon associate. Now many months later I have very ambivalent feelings regarding this - yes, I've made some extra dollar (pound and euro) by serving Amazon.co.uk and Amazon.de - on the other hand, earnings from these versions are humble not to say more, and in fact earnings from Amazon.com have started to dip for couple of months (I'm not blaming…


How To Fix: Error: Call to undefined function curl_init()

| 1 views

After upgrading from Ubuntu 12 to Ubuntu 16 I discovered an error for Drupal website sending e-mails using Mailsystem + Postmark here is the error code: Error: Call to undefined function curl_init() in Mail_Postmark->send() (line 322 of /srv/www/reinisfischer.com/public_html/sites/all/libraries/postmark-php/Postmark.php). Luckily there is an easy solution, installing missing curl: sudo apt-get install php-curl Hope, that helps!


How To Verify Skype Account Without US Credit Card (Microsoft Account Verification)

| 6 views

In today's article, I'll share my experience how I managed to verify my age for Skype account. It all started that one day I was not able to login to my skype account, which I have been using for more than 10 years already.  It turned out  Skype / Microsoft thought I'm a child, as apparently in my Skype account I had entered my birth year as 2008. Now back in 2008, it didn't seem an issue. Since Microsoft acquired Skype back in 2011, apparently, some new rules have been pointed out and it was…


How To Setup Gekko BTC Trading Bot on VPS (Ubuntu 16.04) with GUI (Vultr.com)

| 13 views

Gekko is a free and open source Bitcoin TA trading and backtesting platform that connects to popular Bitcoin exchanges. It is written in javascript and runs on nodejs For the past couple of days I've been playing around with Gekko trading bot installed on my laptop (Windows 10), I have made a few trades and experimented with a couple of strategies. First impressions are promising. See: Simple BTC Trading Bot Gekko - First Impressions Running a trading bot on a laptop is fun, but if you are…


How to send international fax to USA using Faxapp

| 1 views

Think fax is outdated? Think twice, fax is still popular in certain business areas, and fax is kind of popular in the United States. I believe the last time I have seen an actual fax machine in work was back in 1994. Now 24 years later at one stage I thought, it would be good if I would have a fax machine in 2018. I had to send a fax confirming my identity to the Microsoft Corp. Keep reading to learn how to send an international fax without having a fax machine. Turns out, there are several…


Simple BTC Trading Bot Gekko - First Impressions

| 5 views

The idea of using a bitcoin trading bot comes up just shortly I decided to trade up from 0.03 to 0.05 BTC. In the past, I've been using Coinlend bot to lend free coins on exchanges and earn some little interest. Doing a quick google search I found a few bitcoin bot traders, most come with a price, but as I wanted to test how these bots actually work I continued my searches and found free bitcoin bot trader - Gekko.  Setting up this bot will be simple for a tech-savvy person, but might be a…