heyz, is it possible for me to block a IP with a script? I searched and searched but don't find anything. can someone help me?
thanks #*$!x
alcheme
6:42 pm on Feb 11, 2005 (gmt 0)
I use Cpanel for my web hosting accounts and you can use the IP DENY feature.
Check to see if your web hosting account includes a Cpanel and look for IP DENY. It will block as may IP's or IP blocks you like. No coding needed.
HughMungus
6:44 pm on Feb 11, 2005 (gmt 0)
$ip = GetHostByName($REMOTE_ADDR); if ($ip == "theirip") exit;
You can also store the banned IP's in a database and handle it that way.
dreamcatcher
7:23 pm on Feb 11, 2005 (gmt 0)
If its only a handful of IP addresses that you want to ban, put them in an array and check against that. I use cpanels IP banning feature myself, its very useful.
dc
Timotheos
8:15 pm on Feb 11, 2005 (gmt 0)
You could use the principles in this Spider Trap [webmasterworld.com] as well.