b2k Posted August 26, 2007 Share Posted August 26, 2007 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 Quote Link to comment https://forums.phpfreaks.com/topic/66799-ban-system/ Share on other sites More sharing options...
cooldude832 Posted August 26, 2007 Share Posted August 26, 2007 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 Quote Link to comment https://forums.phpfreaks.com/topic/66799-ban-system/#findComment-334723 Share on other sites More sharing options...
tibberous Posted August 26, 2007 Share Posted August 26, 2007 Cooldude is right about everything but the cookie banning system. Cookie banning is pretty pointless. Quote Link to comment https://forums.phpfreaks.com/topic/66799-ban-system/#findComment-334790 Share on other sites More sharing options...
cooldude832 Posted August 26, 2007 Share Posted August 26, 2007 Its so pointless that they might overlook it. The idea to making banning work is just overloading them so much that they can't handle it. Quote Link to comment https://forums.phpfreaks.com/topic/66799-ban-system/#findComment-334796 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.