Quote:
Originally Posted by Fetish Gimp
|
I concur.
Also, check your server's error log. You might be getting hit by bots trying to log into the admin, which should show up as 403 errors pointing at the site's wp-login.php file.
If that's the case you could use something like this in your .htaccess to allow only your computer's IP to log into Wordpress (assuming you have a static IP and you're the sole user. You could add more static IPs if necessary)
Code:
# Allow login access only to trusted IP #
<Files wp-login.php>
order deny,allow
Deny from all
# Trusted IP #
allow from 173.176.166.83
</Files>
Check out Wordpress' codex for
securing Wordpress and google for more info on it.