GreenDolla
Regular Member
- Nov 13, 2009
- 260
- 75
All right guys thanks to http://www.blackhatworld.com/blackhat-seo/members/29142-kimkils.html i finally found a way to rotate offers in bhcb. I looked all over the place and could not find a way to rotate offers in bhcb without URL rotators, so i hope this helps somebody.
If your lazy like me just download the attached file.
All right first you make a PHP file named whateveryouwant.php, then you insert this code into the php file you just made.
Edit the code for whatever offers you want to be rotated.
Now all you have to do is place the link to whateveryouwant.php into links.txt, so instead of placing your CPA link in the links.txt place the link to the php file you just made like so, http://yoursite.com/whateveryouwant.php
That's It Your Done, No More Dam URL Rotators, this code is set to randomly rotate offers but you can fine tune it yourself to whatever you like, it also has some type of Geo redirect but i don't know how to use so i left it alone. Hope this helped somebody.
If your lazy like me just download the attached file.
All right first you make a PHP file named whateveryouwant.php, then you insert this code into the php file you just made.
PHP:
<?php
$random_url = array("http://www.site1.com",
"http://www.site2.com","http://www.site3.com","http://www.site4.com");
srand(time());
$random = (rand()%count($random_url));
header ("Location: $random_url[$random]");
Now all you have to do is place the link to whateveryouwant.php into links.txt, so instead of placing your CPA link in the links.txt place the link to the php file you just made like so, http://yoursite.com/whateveryouwant.php
That's It Your Done, No More Dam URL Rotators, this code is set to randomly rotate offers but you can fine tune it yourself to whatever you like, it also has some type of Geo redirect but i don't know how to use so i left it alone. Hope this helped somebody.