by Krista M | Feb 7, 2019 | How To's
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...
by Krista M | Feb 7, 2019 | How To's
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...
by Krista M | Dec 21, 2018 | How To's
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...
by Krista M | Nov 15, 2018 | How To's
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 –...
by Krista M | Aug 8, 2018 | How To's
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...