To remove an instance of MySQL from your macOS or OSX installation you need to delete a number of files via the command line, but first ensure that you have database dumps of your databases and that then the database server is not running. Back Up any needed databases All of them mysqldump –all-databases > …
Read More
Set Up Let’s Encrypt SSL on cPanel WHM Server
The free SSL service Let’s Encrypt is now available to use on a cPanel/WHM service for versions above 58.0.17, this was announced recently on the feature requests component of the cPanel website. Checking your cPanel/WHM Version Check if your version is above 58.0.17 by logging into your WHM interface and checking the top right. If …
Read More
Compare the diff of 2 folders in the Command Line
You can compare the difference of files in two folders in the Command Line by using the diff command. With folders you use rq as an argument and pass in the 2 folder names on the command line like so… diff -rq folder_1 folder_2 You will get notifications on what same corresponding files are different, as well …
Read More
Get Apache, MySQL, PHP and phpMyAdmin working on OSX 10.11 El Capitan
Get your Local Web Development Environment Up & Running on OSX 10.11 El Capitan With OSX 10.11 El Capitan, here is how to get the AMP stack up and running. This tutorial will go through the process on getting Apache, MySQL, PHP (or otherwise known as the ‘AMP’ stack) and phpMyAdmin running on the El Capitan OS. This tutorial sets up the AMP stack in more of a …
Read More
How to set up Virtual Hosts in Apache on macos Sierra and OSX
Setting up Virtual Hosts in Apache on on macOS Sierra and OSX is straight forward after you have your local Web Development environment up and running – get your web development up and running first including Apache, PHP and MySQL on macOS following this AMP stack guide here if required. The process of setting up Virtual Hosts is done …
Read More
Get Apache, MySQL, PHP and phpMyAdmin working on OSX 10.10 Yosemite
Get your Local Web Development Environment Up & Running on OSX 10.10 Yosemite With Apples’ new OSX 10.10 Yosemite out of the bag, getting the AMP stack up and running on the new OSX may cause a few bumps on the upgrade from OS X Mavericks 10.9. This tutorial will go through the process on getting Apache, MySQL, PHP (or otherwise known as …
Read More
Overview of how JQuery selects HTML elements on the page
Installing jQuery Library For jQuery code to work you need to install the jQuery library in the head of your web page document, WordPress and other CMS’es already come with it pre-installed so make sure not to double up. Get the latest jQuery here. There are 2 versions, the v2 version has no support for …
Read More