If your are using Google Chrome on Debian or Ubuntu, you must have encountered the following error while updating your system through sudo apt-get update. E: Repository ‘http://dl.google.com/linux/chrome-remote-desktop/deb stable Release’ changed its ‘Origin’ value from ‘Google, Inc.’ to ‘Google LLC’…
All posts filed under “Try Catch”
Bugs, Errors, Solutions
Javascript changes value when pushing an object
Have you ever encounter a problem in Javascript where it changes the value of the object when you push it to an array. Well, if you haven’t then maybe you’re not doing a lot of javascript. Anyway, this particular issue…
Apache 2.4 Basic Auth Not working
I have setup a website earlier on a staging environment using Apache 2.4. Everything was working fine until I tried to setup Basic Authentication in apache. First I tried it on the .htaccess file. This is what i wrote on…
MySQL error code 1524
I tried logging in to my MySQL server remotely and suddenly, this error appear. MySQL error code 1524. I didn’t know what it means and I am freaking out because I could lose all my data. So I did a…
cURL error 35 – Unknown SSL protocol error in connection
This problem bugs me for a couple of minutes. I was trying to use curl on sending POST request to a specific website with SSL but it returns cURL error 35. So I tried to ask my friend google for…
npm install node-curl – Failed at the node-curl@0.3.3 install
So I encounter this error while installing node-curl on nodejs v4.2.6 and npm 3.5.2 on Ubuntu 16.04. Below is the entire npm log: > node-curl@0.3.3 install /path/to/dir/node_modules/node-curl > sh src/generate_curl_options_list.sh && (node-gyp rebuild || node-waf configure build) extract constants from…
pecl install mysqlnd_ms – make: *** [php_mysqlnd_ms.lo] Error 1
This error will occur when you try to install mysqlnd_ms using pecl on PHP v5.6 and above. This is because the pecl package manager hasn’t been updated yet, thats why the extension for mysqlnd_ms is available only for PHP v5.3…