This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.cs.colostate.edu/helpdocs/vi.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.danhendricks.com/2018/04/ubuntu-xenial-latest-php-fpm-nginx-mariadb-mysql/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stackoverflow.com/questions/28501077/phpstorm-unable-to-set-breakpoints-in-blade-php-files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node-gyp will throw errors if the requirements is not installed. | |
python and msbuild.exe follow the instruction below. | |
Install all the required tools and configurations using Microsoft's windows-build-tools | |
using npm install --global --production windows-build-tools from an elevated PowerShell or CMD.exe (run as Administrator). | |
Reference: | |
https://github.com/nodejs/node-gyp#installation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stackoverflow.com/questions/29643714/improve-speed-of-mysql-import |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://businesscatalyst.com/bc-blog/business-catalyst-yearly-plans-to-be-discontinued-all-sites-renew-to-monthly | |
https://www.digitalocean.com/community/tutorials/how-to-use-an-spf-record-to-prevent-spoofing-improve-e-mail-reliability | |
https://www.rackaid.com/blog/hotmail-blacklist-removal/ | |
https://www.rackaid.com/blog/email-dns-records/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ubuntu sendmail installation hangs. | |
https://askubuntu.com/questions/937666/ubuntu-16-04-command-line-sendmail-installation-hanged | |
when it hangs we need to kill the process | |
https://askubuntu.com/questions/219545/dpkg-error-dpkg-status-database-is-locked-by-another-process | |
mail takes forever to send? | |
https://www.digitalocean.com/community/questions/sendmail-is-slow-to-send-mail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 | |
# /sbin/mkswap /var/swap.1 | |
# /sbin/swapon /var/swap.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://medium.com/skyshidigital/8-laravel-must-have-packages-to-install-when-you-start-a-new-api-based-project-18d690f24d0e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
As I am working in a corporate environment where developers faces firewall issues, none of the other answers resolved my issue. | |
As the port is not used by Skype, but by some other internal applications, I followed the below steps to resolve the issue: | |
Step 1 - From the XAMPP Control Panel, under Apache, click the Config button, and select the Apache (httpd.conf). | |
Inside the httpd.conf file, somehow I found a line that says: | |
Listen 80 | |
And change the 80 into any number / port you want. In my scenario I’m using port 8080. |