Hey Guys,
I'm new to cloaking and generally I try to stay away from blackhat stuff. The advertiser is super strict on their end and our traffic is backing out really well for them, but I'm told they don't mind stiffing affiliates for the hell of it. I'm working close with the network manager and AM to make sure we're good. My question is:
Should I do:
1. Double Meta Refresh (adds load time)
2. Host my LP on SSL (adds load time)
or both? If I do both, will it hide 100% of my referrers?
Also, I'm a little bit of a PHP newb, how would I incorporate the DMR into my landing page flow?
I'm looking to do this in the mobaff tracker which works in this fashion WITHOUT DMR
1. Affiliate Link Placed Inside Mobaff Tracker (my landing page with subid token appended)
http://www.mydomain.com/index.php&subid=[subid]
<?php $subid = $_GET['subid']; //OFFER NAME $link1 = 'http://www.affnetworkexample.com/1234/?aff_sub=' . $subid; ?>
<a href="<?php echo ($link1);?>">Click Here Now</a>
<?php $subid = $_GET['subid']; //OFFER NAME $link1 = 'http://www.affnetworkexample.com/1234/?aff_sub=' . $subid; ?>
<?php echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.yoursite.com/index2.php\">"; ?>
<?php $subid = $_GET['subid']; //OFFER NAME $link1 = 'http://www.affnetworkexample.com/1234/?aff_sub=' . $subid; ?>
<?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\">";
}
?>