Register Advertise with usHelp Desk Today's Posts Search

Closed Thread
Thread Tools Search this Thread
Unread 4th Aug 2014, 04:19 PM   #1
Warrior Member
 
Join Date: 2014
Posts: 17
Thanks: 6
Thanked 0 Times in 0 Posts
Default
Prosper202, 7Search, LP rotator and AFFID, RID values
Share on: 
fb share twitter share gplus share more share

Hello,

I'm currently running a campaign using 7Search as my traffic source and Prosper202 as my tracking software. I am split testing different landing pages, so I'm using a rotator script.

Almost everything is tracking properly, everything except AFFID and RID values from 7Search.

I've tried many different approaches but I can't figure out how to pass AFFID and RID values through the rotator. Direct linking is tracking AFFID and RID fine, so it has to be the rotator causing problems.

Here are the links I'm using:
1. PeerFly global offer postabck URL:
tracking.something.net/tracking202/static/gpb.php?amount=%commission%&subid=%subid1%
I got this link from Prosper202, Setup, #9 Get Postback/ Pixel, Simple Pixel.

2. Destination URL's used in my 7Search campaign:
landing.something.net/something-roatator.php
This is the link to the rotator.

3. Destination URL's used on my Landing pages. 1 for each LP:
landing.something.net/something1/?t202id=939&c1=###AFFID###-###RID###&t202kw=###KEYWORD###
landing.something.net/something2/?t202id=146&c1=###AFFID###-###RID###&t202kw=###KEYWORD###
I got these 2 links from Propser202, Setup, #8 Get Links.

And here's the rotator script. Again, everything but AFFID and RID is tracking, direct linking tracks everything, rotator doesn't.

Code:
  <?php
 /*
 ----------------------------------
 Prosper202 Landing Page Rotation Script
  
 http://AffiliateMarketingInsights.com
  
 This is a modified script from the one provided by Prosper202 at
  
 http://prosper.tracking202.com/scripts/split-testing-landing-pages/
  
 ----------------------------------
 */
  
 // URLs of the landing pages to be rotated.
 // These are the URLs generated from step #7 Get Links,
 // one link for each landing page.
 // You can add as many landing pages here as you like
 $landingpage[1] = 'landing.something.net/something1/?t202id=939&c1=###AFFID###-###RID###&t202kw=###KEYWORD###';
 $landingpage[2] = 'landing.something.net/something1/?t202id=146&c1=###AFFID###-###RID###&t202kw=###KEYWORD###';
  
 /* ------ DO NOT CHANGE ANYTHING BELOW ------ */
 /* -- (unless you know what you are doing) -- */
  
 // Grab the keyword from the URL
 $kword = $_GET['keyword'];
  
 // The text file 'count.txt' must be created and stored 
 // in the same directory as this rotator script. 
 // Its permission must be set to 777 (CHMOD to 777).
 $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 displayed
 if ($lpNumber >= count($landingpage)) {
     $lpNumber = 1;
 } else {
     $lpNumber = $lpNumber + 1;
 }
  
 // Write the last landing page displayed to the 'count.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] . $kword );
  
 // Terminate script
 die();
  
 ?>
Help truly appreciated,
Nabru!
Nabru is offline  
Closed Thread


Bookmarks

Tags
7search, affid, prosper202, rotator


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -6. The time now is 05:22 PM.