
Lesson covers installing plugin and restoring backups. Creating backups is covered in: Using Plugins in Combination (for a very good reason).
Create or add to your .htaccess in the folder you are protecting.
# Protect Your WordPress Configuration wp-config.php File:
<files wp-config.php>
order allow,deny
deny from all
</files>
#Protect .htaccess file:
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>
#Disable Access to XML-RPC File
<Files xmlrpc.php>
order deny,allow
deny from all
</Files>
----------------------------------------------------------------------------
USE: *.php DENY FROM ALL ---- WITH CAUTION! USE ONLY IF YOU KNOW WHAT YOU ARE DOING
To prevent .php execution put this in a ".htaccess" file in any folder:
<Files *.php>
deny from all
</Files>
Step-by-step methods of how to: backup / move & restore your WordPress site.
I will show you how to create backups using cPanel and backup plugins. Then you will learn how to create a clone of your site and how to migrate it using plugins and manually. We will then cover moving from one hosting provider to another. We will also cover setting up a localhost testing environment to test on before moving it to your new host.
You do not need any programming experience. You do need some WordPress Admin experience with access to a cPanel hosting account.
What this course will give you is: CONFIDENCE in creating backups & moving your site, including your emails!
I have included a BONUS section on site security enjoy!