Whenever I submit a bunch of ads to facebook I get a shitload of extra clicks on my CPVlab. Is there an IP address I can block so that facebook approval clicks will stop showing up on CPVlab?
This is why ads should always head to a PHP file where you control where the traffic goes, so that you can route the to the offer not via your tracking system. Not easy when adding to an already running campaign though. I was going to add something like a referrer check to alleviate some of that nuisance.
Add the IP ranges under the Blocked traffic rules in the settings menu. Its pretty easy to pick out the IPs from the visitor stats. Bulk of them in the 69.171.XXX.XXX range.
Page 77 In the User Guide
Or put this at the top of any PHP file that clicks bounce through. #quickndurrty
[PHP]<?php
if(isset($_SERVER['REMOTE_ADDR'])&&preg_match('/^69\.171\./',$_SERVER['REMOTE_ADDR'])) {
header('Location: http://www.othersite.com/');
exit;
}
?>[/PHP]
Also in Cpv Lab you can remove certain stats from a campaign
Dang, you beat me to it. Thanks for sharing!
who are in the 69.171.XXX.XXX range? bots?
what's the php script above actually do? prevent those under the IPs to access the landers?
In that range are IPs that access your URL when submitting an ad. The above PHP redirects to a specified page based on the visitors IP, rather than your tracking or lander.
That code will need to process before any HTML content. If a browser has started loading some content it's too late to do a header redirect.