
Originally Posted by
Spiral
Do you have any .HTACCESS files setup in the account?
If you use any access control commands by hostname in a .HTACCESS file
then the connections for that account will automatically start performing
hostname lookups
In example:
Code:
<Files *>
Deny from aol.com
</Files>
If I put that in the .HTACCESS on any account, my server would begin
performing hostname lookups of all connections because I told it
to block connections coming from "aol.com" instead of a numeric IP.
oddly enough I thought I was doing this right.
Code:
order allow,deny
deny from 38.98.120.74,72.21.39.242
allow from all
I removed that and now it works fine. Did you ever find a proper way to block just ips? That 38. ip is this annoying ass scraper website, that hits my site more than google http://shopwiki.com/ is what is hosted there. Anyway I extend much gratitude to you for helping me fix this.