extremephp
BANNED
- Oct 19, 2010
- 1,288
- 1,281
Few methods that I get in my head.
(Try it. I cant really guarantee anything)
Redirect if the user is coming from Google to your CPA. (How about getting approved in Adwords and doing that?
)
Sending Traffic to Virurl and kind of sites? (I GOT PAID BY THEM
)
Redirecting Facebook traffic to places where they arent allowed? Or sending non-allowed traffic to the places where you can make money?
Put it into use, and use your head.
In wordpress :
Put it in top of your header :
Rotator :
Redirector :
No blabbering, and I dont own the method, and it isnt anything so new, and am sure a lot would be already using this for diff stuffs.
Questions are welcome. Simple suggestions would be taken care and will be added to the script. (Well you know, I amnt a coder, I am just learning it all.)
(Try it. I cant really guarantee anything)
Redirect if the user is coming from Google to your CPA. (How about getting approved in Adwords and doing that?
Sending Traffic to Virurl and kind of sites? (I GOT PAID BY THEM
Redirecting Facebook traffic to places where they arent allowed? Or sending non-allowed traffic to the places where you can make money?
Put it into use, and use your head.
In wordpress :
Put it in top of your header :
Code:
<?php
/**
* @Referer Based Redirector v1.0 by Extremephp
* @copyright No such shits xD
*/
$referer = $_SERVER['HTTP_REFERER'];
$string = "facebook.com/";//edit it
$piece = "yoursite"; // edit it
$value = strpos($referer, $string);
if ($value > 0)
{
echo '<script type="text/javascript">
window.location = "http://yoursite.com/rotator.php"
</script>';
}
else {}
$final = strpos($referer, $piece);
if ($final > 0)
{
echo '<script type="text/javascript">
window.location = "http://yoursite.com/redirector.php"
</script>';
}
//Done with it. Thanks
?>
Code:
<?php
/**
* @Referer Based Redirector v1.0 by Extremephp
* @copyright No such shits xD
*/
//Rotator
//function - it get opened by header and send the user back to CPA via final referer page
$finalreff = array("http://yoursite.com/page","http://yoursite.com/page2");// this should be a page in your site and this will be the referrer shown to the end site
$no = rand(0,1);//edit dependant on the number of sites added above
header('Location: '. $finalreff[$no]);
?>
Code:
<?php
/**
* @Referer Based Redirector v1.0 by Extremephp
* @copyright No such shits xD
*/
//final redirector
//function - throw the visitors to your cpa site with referer urls given in rotator.php
$cpa = array("http://YOUROFFERURL.com","http://YOUROFFERURL2.com");
$rand = rand(0,1);//edit it depending the num of sites added.
header('Location: '. $cpa[$rand]);
?>
Questions are welcome. Simple suggestions would be taken care and will be added to the script. (Well you know, I amnt a coder, I am just learning it all.)