Wp-admin suddenly 403 forbidden Last week worked

Help. When I try to login to my wordpress site through wp-admin or wp-login.php I get this :

http://www.nlccenter.com/inform/wp-login.php?redirect_to=http%3A%2F%2Fwww.nlccenter.com%2Finform%2Fwp-admin%2F&reauth=1

The it says Error occurred: 403 - forbidden

This happens on both my sites but the other one “www.nlccenter.com/blog” I use a plugin so I am able to get into the dashboard.

I made no changes to inform but I updated the wordpress site on blog

Have you checked your .htaccess?

It normally looks like this:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

You can try to Deactive the plugin from the Database… Login to your Cpanel ==> Phpmyadmin ==> YourDatabase ==> look for the wp_options table, there you can see : active_plugins ==> Click on the Pencil (Edit/Modify) ==> Find The line of Your Plugin on the Option_Value Raw Then simply Change the a:1 To a:0 and Save !

Then check again by using the normal way to login…

Goodluck

Worked for me… Thanks!