Disable SSL if locked out WordPress
Administration Over SSL
Enable or disable force WordPress administration over SSL, there are two constants that you can define in your site’s wp-config.php file. Please see the follow example:
Solution
- Login to your server (if you are on shared hosting then it would be your cPanel)
- Go to htdocs or root location of your WordPress website
- Edit wp-config.php
- You will notice following two lines where SSL is defined as true
define('FORCE_SSL_ADMIN', true);
Change that true to false so it should be like below.
define('FORCE_SSL_ADMIN', false);