Hi guys
I have a profitable campaign with some offer I'm running right now with media buying and I really don't want my cpa network to find out about where the conversions are coming from. I'm sure they will try to copy my campaign which is pretty easy to do . I run this campaign with direct linking and before I decide to scale it up, I would like to ask you guys what is the easiest way to cloak my traffic source so that my network will never know how I bring the conversions ?
Thanks!
use cloaking in prosper for the easiest way, do a double meta refresh for the safest way.
thanks mate, any chance you can give me a link to some information about it? I have never done this before so i'm pretty much clueless about this cloaking thing
wait are you direct linking from traffic source to network offer url, with out anything in the middle like prosper202 or cpvlab
yeah....that's the problem i want to solve
Here's how you do a DMR without the need for prosper... First create two separate files to save to your root of your server... We will call them index.php and index2.php.
File 1: index.php
[PHP]<?php
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.yoursite.com/index2.php\">";
?>[/PHP]
File 2: index2.php
[PHP]<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.youraffiliatelink.com\">";
}
else
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.yoursite.com\">";
}
?>[/PHP]
Simply upload both files to your root directory and send your traffic to the index.php file on your website. Sometimes browsers leak referrer info anyway... The second index file should help to prevent that by checking if the referrer is blank prior to redirecting.
ya so you are still going to have to edit your url in your traffic source and wait till it gets reapproved.
https>http...it will never show the ref....
thank you guys. if i use the plugin "pretty links" with wordpress , will it do the job as well in terms of cloaking the traffic source?
Although I'm not really familiar with "pretty links", at first glance it looks like it just masks your links... That won't change the referrer, it will only make your links look shorter.
ok so i installed prosper on my server and eventually i got a link looking something like this :
http://www.mysite.org/tracking202/re...id=111&t111kw=
is that what i was needed to achieve ? and by the way is it only me, or it really does take way too long for the site to load with the addition of prosper202 ?
Cloaking your links is very risky if you are trying to be certain that no referral data is based. For instance, doing meta refresh is time consuming, let alone doing it twice. Same thing for other strategies as well. The only method which works 99% of the time is http to https or https to http.
can you please elaborate on the http to https thing? i'm not really sure i understand what it means and how to do it
thanks!