What is the best Offer Rotating plus Tracking Tool?

deth_by_uv

Power Member
Joined
Feb 26, 2008
Messages
525
Reaction score
428
Right now I am using Tracking202 to track my clicks and conversions, however one thing I am trying to do is rotate my offers on auto. Right now I am doing it manually, which sucks. The original script put out by Tracking202 guys rotates, but doesn't track which offers are performers.

I have tried this solution with no success:

Code:
http://www.ianfernando.com/2009/a-more-detailed-tracking202-rotation/

I keep getting this error:

Parse error: syntax error, unexpected T_STRING in /home/strategi/public_html/rotate/rotate.php on line 10

This next method using Tracking202 looks like a bitch having to create a landing page entry for each offer (I want to rotate 10-15 offers at a time). Seems very time consuming when you want to scale up...but I'm going to try it:

Code:
http://profitapolis.com/featured/how-to-split-test-landing-pages-with-tracking202.html

And then...there's adtrackz from what I hear mentioned a few times for tracking and in the PPV Formula vidz. I'd like to use prosper202, but then that requires that I find a host with downgraded php which is kind of shakey to me because if they upgrade...then prosper202 would be dead.

Is there any easy way to do this?
 
Are you using the latest version of tracking202? Cause when you setup your campaign there is an option "Rotate URLs?" when checked you can enter many URLS... this is usually used to rotate the SAME offer over various networks (cause you cannot edit payout), but I use it to rotate various offers of the same type....

goodluck
 
go to the rotate.php file and check on line 10 if you have missed out a ;

However if the line number mentioned happens to be at the end of your code, then you will have to go back and look through out all your code to see if all the { } and " " are set up properly.
 
deth: you ever figure this out?

Ahhh, no I wish I did. I played around with it for a day or two then kind of went off to do something else and forgot. Then I just remembered about it today - Googling for anymore help and saw this thread in the SERP's haha.
 
Post your rotate.php and we'll see where the bug is....
 
I checked to make sure that all the php was correct, and it appears so. And it is just mind boggling to me to get this working :confused:

Here it is:

Code:
    <meta http-equiv="refresh" content="0;url=

    <?
    $file = file('links.txt');
    foreach($file as $url)
    {
    $url = trim($url);
    $urls[] = $url;
    }
    $max = count($urls) - 1;
    $rand = rand(0,$max);
    echo $urls[$rand];
    ?>

    " />

    TRACKING202 JS SCRIPT HERE

Got the script and followed step by step instructions (pretty simple) at:

Code:
http://www.ianfernando.com/2009/a-more-detailed-tracking202-rotation/
 
Try this (copy&paste this code):

Code:
    <meta http-equiv="refresh" content="0;url=

    <?
    $file = file('links.txt');
    foreach($file as $url)
    {
    $url = trim($url);
    $urls[] = $url;
    }
    $max = count($urls) ? 1;
    $rand = rand(0,$max);
    echo $urls[$rand];
    ?>

    " />

    TRACKING202 JS SCRIPT HERE
I've edited nothing but the quotation marks. They seem a bit wrong for the php parser....no errors found so it must have something to do with the quotation....
 
Hey thanks for taking a look over the code, but unfortunately it's still the same error. Are you using any kind of rotator+tracking script? I don't care if it's paid or not just want to get this straight.
 
Hmmm, strange. I'm using no ad rotator at the moment. I'm relatively new to PPV. Per keyword set I'm using only one offer but different landing pages.

I'm rather into keyword and landing page optimization than offer rotation....maybe I'm on the wrong road?
 
Just use prosper202, it will work with any version of php, you don't need to worry about it upgrading.
 
yeah, just use prosper

Or use ppv dominator - which you can find in chaudry's pay per view formula course
 
I use Prosper 202 and it works great for just about anything. I really enjoy the spy mode, it gives me a good idea of how my ads are running when I see how many clicks I get per refresh.
 
Back
Top