3 Simple Steps to Protecting your WordPress Website with SSL / HTTPS.

There are tons of options out there to protect yourself with https and it can be daunting at first, but I will give my view on it and how I’ve managed dozens of WordPress websites with HTTPS over the years. Before we go any further you must obtain a SSL Certificate (usually done via your […]

Quick snippet to change all instances of WordPress URL

Sometimes you are moving a websites folder structure, or sometimes you are moving a website hosts. This quick and easy sql script will allow you to update all instances of the current URL with a new URL so moving wordpress sites is painless.   UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl’, ‘http://www.newurl’) WHERE option_name = […]