Converting A VMware Image To A Physical Machine
https://www.howtoforge.com/converting-a-vmware-image-to-a-physical-machine
https://www.howtoforge.com/converting-a-vmware-image-to-a-physical-machine
Ever since WordPress version 2.6 you can actually move your wp-content directory to a different location. The wp-content directory will store all your theme files, plugin files and images. Why Move The wp-content Folder The best reason to move the…
Grunt is a Javascript task runner that can be used to compile Sass, run JSHint, or run many other plugins. It depends on theNode.js package manager, npm. If you use the standard Ubuntu Trusty Tahr repository to install nodejs/npm, you…
sudo apt-get install nodejs installs nodejs sudo apt-get install npm installs npm sudo npm install bower -g installs bower via npm
http://stackoverflow.com/questions/18236838/explain-htaccess-rules
Moving a Root install to its own directory The process to move WordPress into its own directory is as follows: Create the new location for the core WordPress files to be stored (we will use /wordpress in our examples). (On…
Make sure you backup your mysql databases first! sudo apt-get remove mysql-server sudo apt-get autoremove sudo apt-get install mysql-client-5.6 mysql-client-core-5.6 sudo apt-get install mysql-server-5.6 reference: askubuntu.com
transfer files setup permissions as follows chown -R www-data:www-data /var/www/html find /var/www/html/ -type f -exec chmod 664 {} + find /var/www/html/ -type d -exec chmod 755 {} + transfer database confirm that wp-config.php hostname and database names are correct edit…
http://fideloper.com/install-zend-opcache Also read https://www.digitalocean.com/community/questions/how-to-install-alternative-php-cache-apc-on-ubuntu-14-04
https://www.percona.com/blog/2014/01/28/10-mysql-settings-to-tune-after-installation/
MySQLTuner-perl MySQLTuner is a script written in Perl that allows you to review a MySQL installation quickly and make adjustments to increase performance and stability. The current configuration variables and status data is retrieved and presented in a brief format…
STEP 01) Change the following in /etc/my.cnf [mysqld] innodb_log_buffer_size = 32M innodb_buffer_pool_size = 2G innodb_log_file_size = 768M STEP 02) SET GLOBAL innodb_fast_shutdown = 0; to force InnoDB to completely purge transactional changes from all of InnoDB moving parts, including the transactional logs (ib_logfile0,…
How to find the proper MTU size for my network - Welcome to TP-LINK How to find the proper MTU size for my network Helpful hint: One way to verify whether if it is an MTU problem is to try…
Recursively list all hidden files and directories on Linux/Unix The basic syntax is as follows: find /dir/to/search/ -name ".*" -print OR find /dir/to/search/ -name ".*" -ls OR search only hidden files: find /dir/to/search/ -type f -iname ".*" -ls OR search…
First refresh the list of available updates so Drush knows there is a new release for Drupal. drush rf # pm-refresh and then drush up drupal Done!
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu