Select Page

Backup Database Using phpMyAdmin

To back up your WordPress database, first log into your cPanel account and under the Databases heading, click on phpMyAdmin   Once in phpMyAdmin click on the database name listed on the left   Next click on Export near the top, leave everything as default...

Updating Site URL to Include Https

Important:  Before making any changes, back up your WordPress installation.  If your host uses Softaculous, you should be able to create a backup right through the Softaculous area in your cPanel.  Otherwise, the backup will need to be done via phpMyAdmin (click here...

Importing your domain email account into Gmail

Importing your domain email account into Gmail Open your Gmail account. At the top right, click the Settings icon, and then click on See all settings   3. Select the Accounts and Import tab. 4. In the Check mail from other accounts (using POP3) section, click Add...

Replace WordPress Cron With A Real Cron Job

Because WordPress has to work on all sort of different platforms, OS’s and configurations, it can’t rely that there will be a cronjob service on the server that can handle scheduled tasks. This is why WordPress developers have created a workaround –...

How to force SSL with .htaccess

How to force SSL with .htaccess You can force an HTTPS connection on your website by adding these rules in your website’s .htaccess file: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]   The...