WordPress Content Management System Icon

Recently was not able to convince a client of the benefits of having me professionally manage, host and maintain their website for them. They wanted to save money and use GoDaddy’s Basic Managed WordPress service. So I had to migrate their completed demo over to it but ran into countless errors with GoDaddy’s hosting platform.

The GoDaddy migration tool was useless as was GoDaddy support. GoDaddy support insisted that I upgrade the server in order to complete the migration. But I only had delegated access to the clients account with no ability to purchase said upgrade because the client did not grant me those permissions.

Long story short, I was able to manually migrate their site over, even though we were on the Basic Managed WordPress server using the steps enumerated in this article.

This article is only for my personal use, to help jog my memory if another client want to migrate their site to a more affordable solution. Please do not use this article for migrating any of your or client sites. If you do, you take full responsibility for anything that goes wrong, or right for that matter.

 

Read more

How to Flush DNS Cache Windows

Most operating systems will cache (save) IP addresses and other associated Domain Name System (DNS) records in order to fulfill future requests more quickly.

For example, when I visit a website for the first time, my Brave web browser has to ask DNS servers what the IP address is for the requested website. Once it has found this information, my Brave web browser will store it in its local cache and take me to the requested website.

The next time I access that website, my Brave web browser will first check for locally saved DNS records which saves a step by not having to fetch that server IP address again.

When you update the DNS records for your domain name, after transferring to a new hosting provider for example, your local cache needs to be cleared and updated. Otherwise your web browser may continue redirecting you to the old web server address until the DNS propagates throughout the web (usually after 24 hours).

Also, sometimes dangerous IP addresses or corrupted results can be cached along with other issues not mentioned here. Whatever the reason, Windows will allow you to force the process of clearing this cache or “flushing” your DNS. In this article I will show you how to quickly and easily flush your DNS cache on Windows.

 

Read more

XAMPP Logo

Recently needed to implement a local development environment that used Apache, PHP and MySQL on Windows.

Years ago I played with WAMP server, which worked well. But the payload was large (1GB installer), system resource utilization high, and it required a number of outdated Microsoft Visual C++ versions to be installed in order to operate correctly. It was also very slow to use but it did work.

Local by Flywheel was slightly better but also very, very slow on a Windows computer. At least in my experience.

By far the best experience has been XAMPP. Granted, you have to run the installer as an administrator as well as its primary executables. But beyond that, it had a smaller installer and opening up a local WordPress installation is at least 4x faster than with Local by Flywheel. In short, for my personal needs the clear winner is XAMPP. Your experience may be different.

Within this article I have instructions and a video covering how I installed XAMPP on my Windows PC for quickly spinning up a WordPress installation for use in WordPress Plugin development.

 

Read more

SiteGround Logo

SSH (Secure Shell) allows us to remotely access a server to configure and install scripts, manage files and folders, plus much more.

This article will show you the commands necessary to manage your website on SiteGround via SSH.

You may want to read my article on how to connect to a SiteGround website using SSH.

 

Read more

SiteGround Logo

SSH (Secure Shell) allows us to remotely access a server to configure and install scripts, manage files and folders, plus much more.

This article will show you how to use SSH to access a website located on a SiteGround server using an open source tool known as PuTTY.

 

Read more

Website Hosting Services Naples, Florida

When migrating a website from one hosting provider to another we can initiate the migration all the way up to the final steps of updating the DNS and installing the SSL certificate.

This would allow us an opportunity to ensure that the migrated site, waiting on the new server, is fully operational (minus the SSL) prior to going live. For example, imagine not setting the database credentials correctly and when the DNS change takes effect you and any visitors are welcomed with a “Database Connection Error“. I call that a “nobueno” situation and now you must hurry to correct the blunder.

 

Read more

Apache Logo

There may be some situations when you want to restrict or redirect your website traffic by IP address. To accomplish this simply add the following lines of code to your website’s .htaccess file (assuming your website is on an Apache webserver):

 

Read more

GoDaddy Pro Sites ManageWP

Since this morning we have been unable to sign into our GoDaddy Prosites dashboard which we use to manage some web site client accounts. Well, we can sign in but it would immediately revert us to the sign in screen. However, we are able to access our domain names, client accounts and other features. Just not the Prosites, which is the most important part for us.

So we reached out to GoDaddy Customer Support at (480) 463-8387 and went through the process of reporting the issue. We spent close to 40 minutes on the phone with them walking them through the steps to recreate the issue. We even generated a video demonstrating the issue and posted it our YouTube channel for them to review.

While we waited we discovered that the issue was with their “Keep me signed in” feature.

 

Read more

Apache Logo

There are situations when you may want to redirect your website traffic from HTTPS to HTTP. To accomplish this simply add the following lines of code to your website’s .htaccess file (assuming your website is on an Apache webserver):

 

 

This will redirect all your website traffic from “https://” to “http://

 

Read more

Disable XML-RPC on WordPress Website

The following kinds of attacks on WordPress websites, specifically targeting xmlrpc.php, have received increasing press coverage since 2015:

If you (via an app) or your website (via a plugin) are not using the xmlrpc functionality then it may be wise to disable access to xmlrpc.php

There are several free and premium plugins to choose from on the official WordPress repository. Remember, disabling access to the xmlrpc file may break API functionality that your applications or plugins rely upon.

Later in this article will show you how to disable access to the xmlrpc without using any WordPress plugins.

 

Read more