alcheme

msg:1275991 | 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

msg:1275992 | 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

msg:1275993 | 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

msg:1275994 | 8:15 pm on Feb 11, 2005 (gmt 0) |
You could use the principles in this Spider Trap [webmasterworld.com] as well.
|
|