mediatraffic tracking

you can use Prosper202 to track MediaTraffic referral. this tool support PPC and PPV
 
I use prosper. But you can use any other other script as long as you are fetching the keyw_passthru param in the querystring.
 
you can use Prosper202 to track MediaTraffic referral. this tool support PPC and PPV

Does anyone also have the problem of tracking targets when using a rotator with Media Traffic > P202? I've asked the folks at MT why I get [no keyword] at P202 when sending the traffic to a rotator...they don't know.
 
is it possible to track source url instead of keyword?
 
If you have your source urls as targets in your campaign you can get the urls returned as keywords. But you will get only the urls in your target list returned - if other urls have triggered your popup you won't get the exact url.
 
you have to check "Target Pass-through" in campaign otherwise P202 can not track where URL come from
 
you have to check "Target Pass-through" in campaign otherwise P202 can not track where URL come from

Lux...not sure if you were replying to my message above, but I've got the target passthrough button checked on all my campaigns in MT, so that is not the answer to my issue. To reiterate, when I do not use the P202 rotator, all my mediatraffic targets--both kw and URLs--are passed through just fine in Tracking202. But when I use the P202 rotator, the targets all come out [no keyword], which is a bummer if you're trying to "throw an' stick" multi-offers.
 
How do you do the rotation?
I think you don't pass $_GET['keyw_passthro'] to your offer urls. You have to change this in your script.
 
With Tracking202 and Media Traffic pop-overs, does the targeted url pass all the way thru to the sale on the Offer page if you're using a Landing page inbetween? If so, where do you put the T202 tracker info? (on the landing page? on the creative page?)

Also, does each targeted url get its own tracker set up in T202?
 
Greetings,

This is a new code from trackin202/prosper202 for rotating offers with KW/URLs passing through tested with MediaTraffic offers.

You can find the original post here:
hxxp://prosper.tracking202.com/scripts/split-testing-landing-pages/#c-1265

Here is the code:
PHP:
 <?
 
 //Tracking202 Pro Custom Landing Page Script
 
 $parsed_url = @parse_url('http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']);
 
 $query = $parsed_url['query'];
 
 //landing pages filenames, theses will be rotated between eachother
 
 //theses landing pages must be in the same DIRECTORY as this file
 
 //you can add as many landing pages here as you like
 
 //this includes all of the get urls
 
 $landingpage[1] = '/lp1/index.php?' . $query;
 
 $landingpage[2] = '/lp2/index.php?' . $query;
 
 //this is the text file, which will be stored in the same directory as this file,
 
 //count.txt needs to be CHMOD to 777, full privlledges, to read and write to it.
 
 $myFile = "count.txt";
 
 //open the txt file
 
 $fh = @fopen($myFile, 'r');
 
 $lpNumber = @fread($fh, 5);
 
 @fclose($fh);
 
 //see which landing page is next in line to be shown.
 
 if ($lpNumber >= count($landingpage)) {
 
 $lpNumber = 1;
 
 } else {
 
 $lpNumber = $lpNumber + 1;
 
 }
 
 //write to the txt file.
 
 $fh = fopen($myFile, 'w') or die("can't open file");
 
 $stringData = $lpNumber . "\n";
 
 fwrite($fh, $stringData);
 
 fclose($fh);
 
 //redirect to the landing page
 
 header('location: ' . $landingpage[$lpNumber]);
 
 ?>
If you find this info helpful feel free to hit Thanks Button.
Good Luck !
 
Back
Top