I did the scan, it found some threats and I seem to have neutralized everything, but Google still blocks my wordpress site.
I have setup I security plugin to help prevent problems coming in, so I think this is a problem that has not been removed fully.
http://www.backin5mins.com
Help?
It looks like you might still have a malicious redirect on that site. If you want to give me your WP Admin login I will find and clear this last threat and add it to my definitions update so that it can be automatically removed in the future.
You can email your credentials to: eli at gotmls dot net
P.S. after the threat is completely removed you can request a review of your site in Google Webmaster Tools.
Hey Charlie,
I fixed it! the redirect turned out to be in the .htaccess file in your user’s root directory (up one level from your web’s root directory). I expanded the search range of my plugin to look outside the public_html directory and, bang!, it wound it right away.
Now that the malicious redirect is out of the way you still are getting 404 errors on all pages except the home page. This is because you are using a permalink structure that requires the following code in the .htaccess file in theÂ
public_html directory but it looks like “Better WP Security” has locked down that file (maybe a little too tight). You’ll need to use FTP to put this code back into that file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Let me know if I can be of any further assistance.