Viewing 1 replies (of 1 total)
  • When you added the ip address(es) to the ban list, the iTSec plugin added lines like these to the .htaccess file:

    # BEGIN Ban Users
    SetEnvIF REMOTE_ADDR “^134\.678\.23\.62$” DenyAccess
    SetEnvIF X-FORWARDED-FOR “^134\.678\.23\.62$” DenyAccess
    SetEnvIF X-CLUSTER-CLIENT-IP “^134\.678\.23\.62$” DenyAccess

    order allow,deny
    deny from env=DenyAccess
    deny from 134.678.23.62
    allow from all

    # END Ban Users

    As you can see the iTSec plugin writes Apache 2.2 style directives to the .htaccess file.

    If you are using Apache 2.4 make sure the mod_access_compat module is loaded for backward compatibility.

    If the above info helps you resolve the issue please mark this topic as ‘resolved’.

    dwinden

Viewing 1 replies (of 1 total)
  • The topic ‘Banning an IP address, now site throws an exception’ is closed to new replies.