Jump to content

Ban system


b2k

Recommended Posts

Hi, i`m have installed Wordpress, but i want to improve a ban system.

 

See:

 

I going to have a table, with all the ip visited in my blog...So first i have to add the record of that ip?...How can i do?....

 

Sencond..This what i have done

 

Code:

 

$ip= $_SERVER['REMOTE_ADDR'];

$ban =  $SQLQUERY;

if($ban == $ip) {

include './ban/index.php';

 

 

Thanks..No so much, because, i`m a little newbie with sql

 

Thanks for the attention

Link to comment
https://forums.phpfreaks.com/topic/66799-ban-system/
Share on other sites

IP based banning will create very unfavorable results because how many ISPs use a dDNS system to distribute ips to their customers you might end up banning a person you don't want to.  Best method of banning is to use logins to get to areas that require an email confermation to use, secondly a capacha on the login script/registration will help.  Thridly tracking IPS is good because if you can catch a person abusing your terms and conditions and track when it happened you can report to the ISP that you had a violation at this time on this IP and request further information about that client.  Another tactic is a cookie banning system.  If you put enough of these in place you will eventually chase them away or get them in trouble with their ISP/local law enforcement.  But a IP based Banning will not work because of proxies, ip leases, ip pools etc etc

Link to comment
https://forums.phpfreaks.com/topic/66799-ban-system/#findComment-334723
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.