XF 1.2 Restrict Admin Access to IP's

Hi

How can i restrict the ACP access to group of IP's

thanks

Either using my addon, or better yet using these htaccess rules (put it at the top of the .htaccess file in the forum root):

Code:
<Files admin.php>
Order allow,deny
Allow from <your ip>
Deny from all
</Files>

Add other Allow from lines for each IP. This should be in the forum root (generally the public_html folder).

Liam
 
Either using my addon, or better yet using these htaccess rules (put it at the top of the .htaccess file in the forum root):

Code:
<Files admin.php>
Order allow,deny
Allow from <your ip>
Deny from all
</Files>

Add other Allow from lines for each IP. This should be in the forum root (generally the public_html folder).

Liam
Thanks, will try it.
 
Top Bottom