• We recently had a 404 a ‘host triggered blacklist’ and the following added to the htaccess

    
    #	<IfModule mod_authz_core.c>
    #	<RequireAll>
    #	Require all granted
    #	Require not env DenyAccess
    #	Require not ip 66.249.64.185
    #	</RequireAll>
    #	</IfModule>
    #	<IfModule !mod_authz_core.c>
    #	Order allow,deny
    #	Allow from all
    #	Deny from env=DenyAccess
    #	Deny from 66.249.64.185
    #	</IfModule>
    

    Unfortunately this blocked the whole site for everyone, i had to comment out the above to get the site back. Surely this is not correct, why did the whole site get blocked and is there anything i can do to avoid it in the future?

The topic ‘Banned user IP blocking all users?’ is closed to new replies.