Whats the best adsense click bomb control?

HollywoodToday

Regular Member
Joined
Jun 29, 2011
Messages
427
Reaction score
166
Goal is to limit each ip to only 1 adsense ad click per month or so.

Whats the best adsense click bomb controller? I've tested the following:

openx management is aweful
Click bomb protect plugin is inaccurate
click fraud monitor plugin is inaccurate
adlogger plugin
who sees ads plugin
and others tested.

ideas? programmers?
 
This is an interesting one. You could go with a simple cookie, but this would be browser based, rather than IP based.
https://www.webmasterworld.com/forum88/7619.htm

Otherwise, you would have to find some way to store IP's in a file or database, and give them a timestamp, as well as a script to delete certain entries after 30 days. The system would then check the visitors IP against this database or file, and show the content depending on whether there's a match or not. Unfortunately my PHP skills aren't such that I can code an example, but that's how I'd go about telling a developer what to do.

Edit: These might help:
http://www.tekyfox.com/php/get-visitors-ip-address-using-php-store-mysql-database/
http://stackoverflow.com/questions/8015098/how-to-check-if-value-already-exists-in-mysql-database
 
Last edited:
Thank You Conor,

I had been looking at that webmaster page prior, but useful. It seems that most are unable to accurately limit an adsense click to 1 per ip. Since Im no programmer, its hard to know where to look, but if anyone else has suggestions too, fabulous.
 
This is an interesting one. You could go with a simple cookie, but this would be browser based, rather than IP based.
https://www.webmasterworld.com/forum88/7619.htm

Otherwise, you would have to find some way to store IP's in a file or database, and give them a timestamp, as well as a script to delete certain entries after 30 days. The system would then check the visitors IP against this database or file, and show the content depending on whether there's a match or not. Unfortunately, my PHP skills aren't such that I can code an example, but that's how I'd go about telling a developer what to do.

Edit: These might help:
http://www.tekyfox.com/php/get-visitors-ip-address-using-php-store-mysql-database/
http://stackoverflow.com/questions/8015098/how-to-check-if-value-already-exists-in-mysql-database

I suggested, Thanks for sharing
 
Back
Top