PDA

View Full Version : I need to ban an I.P. from my site.


kewlchat
08-20-2007, 05:20 PM
Is there anyway the admin or myself can ban an ip from my site the guys really causeing alot of problems ive already emailed his isp but i cant block him from the site. the ip is 12.26.62.76 i need him permantly ban hes click bombing my ads and causeing all kinds of greif :(

UnlimitedMB
08-20-2007, 05:59 PM
There is no way we can block IP from your site.
You must do this yourself in your own php code.

kewlchat
08-20-2007, 06:02 PM
the only way i know how is with htaccess .. is there any other way in php thats allowed here?

UnlimitedMB
08-20-2007, 06:09 PM
if ($_SERVER['REMOTE_ADDR'] == "12.26.62.76"){
echo "Your banned";
exit;
}

kewlchat
08-20-2007, 06:21 PM
:) :) Thanks