Need someone to help me correctly implement CPA Redirector 2 on my site...

Lawlerskates

Junior Member
Joined
Nov 29, 2009
Messages
197
Reaction score
71
If there's any friendly guys around here who can teach me how to use CPA Redirector 2, I'd really appreciate it. Just send me a PM if you can help out. I've tried it once before and I don't think I had it working correctly (because I got banned :P).
 
Also, there are a number of reasons you may have been banned from the network, not just because they saw your referer. CPA rdr may very well have done it's job, but you may have been banned because:

Your CTR was too high
Your bounce rate on the second page was too high
and many other reasons.

However, I'm no CPA expert, I'm sure somebody more enlightened could jump on here and give you a whole host of other reasons.
 
Also, there are a number of reasons you may have been banned from the network, not just because they saw your referer. CPA rdr may very well have done it's job, but you may have been banned because:

Your CTR was too high
Your bounce rate on the second page was too high
and many other reasons.

However, I'm no CPA expert, I'm sure somebody more enlightened could jump on here and give you a whole host of other reasons.

It's definitely possible but my click-through ratio was actually quite poor and my blackhat methods weren't all too blackhat. Heck, it's probably very likely I got banned for another reason. But I'm pretty sure I didn't correctly set up CPA Redirector and my HTML knowledge is very basic (Wordpress, Copy/Paste other site layouts, etc.) so the concept of it confuses me.
 
So CPA Redirect 2.1 looks like this. The previous link talks about the first CPA Redirector and has an interface, but as far as I know, this one doesn't. It just gives me an index.php.

So what do I do?

Let's say I have a porn site, named pornsite.com. And it requires someone to fill out the offer to see the porn. Then I have the my fake site, the site that has the same CPA Offer on it but legitimately follows the ToS. We'll call it legit.com. So I put this index.php at pornsite.com. Then I set the $cpa_offer_url to www.legit.com. Then at the bottom I put the html from pornsite.com in between the <html> tags?

I don't get it. It boggles my mind. :(

Code:
<?php
 
//Standalone CPA Redirector v2.1

//Settings

$magic_number = 1234; // Any number you choose except ZERO!

$cpa_offer_url = 'http://www.whatismyreferrer.com/';

$PHP_SELF = preg_replace( "/index.php/", "", $_SERVER['PHP_SELF'] );


//Don't edit below this line unless you know what you are doing.

if (isset($_GET['mn']) && $_GET['mn']==$magic_number){        

        echo '<html><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"></head><body><form action="' . 'http://'.$_SERVER['HTTP_HOST'].$PHP_SELF. '" method="post" id="form1">

<input type="hidden"  name="mn" value="' . $magic_number . '" /></form>

<script language="JavaScript"> 
    document.getElementById(\'form1\').submit();</script></body></html>';
        return true; 
        exit();
}

if ($_POST['mn']==$magic_number){        

    echo '<html><head><META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"></head><body><form action="' . 'http://'.$_SERVER['HTTP_HOST'].$PHP_SELF. '" method="post" id="form1">

<input type="hidden"  name="mn" value="' . $magic_number . $magic_number . '" /></form>

<script language="JavaScript"> 
    document.getElementById(\'form1\').submit();</script></body></html>';
        return true; 
        exit();
}    

$dom = preg_replace( "/^www\./", "", $_SERVER[ 'HTTP_HOST' ] ) ;
$ref= $_SERVER['HTTP_REFERER'];


if (((strpos($ref, $dom)!=FALSE) || (trim($ref)=="" ) ) && (!isset($_GET['mn']))  && ($_POST['mn']==$magic_number.$magic_number)){
        header( 'Location: ' . $cpa_offer_url);
        exit();
    }


?>


<html>
  <head>
    <title>Your Fake Landing Page</title>
  </head>
  <body>
    <br><br><br><br>
     <center><h1>Your Fake Landing Page</h1></center>
 
  </body>
</html>
 
Back
Top