+ Reply to Thread
Results 1 to 3 of 3
-
07-31-2012 04:52 PM #1
Stop junk clicks on your api sites
This is something I encourage everyone that builds an api site to do. Not only does it make your stats more accurate, it also cuts down on bandwidth for both you and Prosperent. We often hear complaints from merchants that receive high volumes of low converting traffic as well, so this helps ensure that Prosperent always has good standing relationships with all of our merchants. Even those that are using mfpmu should install this.
So, how do you stop junk bots from gobbling up all of your server resources? Install ZBBLOCK. It's free, easy to install and should work on just about any setup: http://www.spambotsecurity.com/zbblock.php
Here are some basic rules that should block a large portion of the junk bots and traffic from your server:
PHP Code:$ax = $ax - (inmatch($fromhost,"/url?sa=","Google Serp Allow"));
$ax = $ax - (inmatch($fromhost,"/search?q=","Google Serp Allow"));
$ax = $ax + (inmatch($hoster,"whois.sc","whois.sc Host"));
$ax = $ax + (inmatch($fromhost,"domaintools","DomainTools Referer"));
$ax = $ax + (inmatch($fromhost,"whois.sc","Whois.SC Referer"));
$ax = $ax + (inmatch($lcuseragent,"surveybot","SurveyBot User Agent"));
$ax = $ax + (inmatch($lcuseragent,"reverseget","ReverseGet User Agent"));
$ax = $ax + (inmatch($lcuseragent,"yandexbot","YandexBot User Agent"));
$ax = $ax + (inmatch($lcuseragent,"baiduspider","baiduspider User Agent"));
$ax = $ax + (inmatch($lcuseragent,"netcraft","Net Craft"));
$ax = $ax + (inmatch($lcuseragent,"archive.org_bot","Archive.O rg BOT"));
$ax = $ax + (inmatch($fromhost,"bbs.emu-zone.org","bbs.emu-zone.org"));
$ax = $ax + (inmatch($hoster,"sistrix.net","sistrix.net Bot"));
$ax = $ax + (inmatch($fromhost,"zimbio","zimbio.com Referer spam"));
-
10-07-2012 05:12 PM #2Member
- Join Date
- May 2011
- Posts
- 85
This is what I really really need! How do i use this code ??
Thanks Brian
-
10-08-2012 08:23 AM #3
If you follow the link, it gives directions for installing zbblock on a variety of servers and pieces of software. From there, you just copy and paste the rules above into the zbblock rules

Reply With Quote