Prosper showing wack keywords, some redirect bug?

juntao65

WF Platinum Member
Feb 16, 2009
1,127
13
0
Vancouver
So this has been making me rage for the past few days.

I'm testing traffic on this one source, and it's giving me keywords like so in prosper:
Code:
YTMwNDAwNDcxMjeLCGVj4RQ4Vj7qG53ftDjDsXvn2klHeE/2RY
OTUyMjgxMjIxM8DmLeZWW52nsFv3GC2eKMusNsJvB0uMreMZ3v

instead of the keywords I'm actually bidding on. It seems like they're some unique identifier because every one of those wack keywords only have 1 click. This only happens about 40-50% of the time. Only on this one source, whether I directlink or use a lander.

My setup:
LP rotator ---> LP or directlink

LP rotator code:
Code:
<?php
// assumes kw at the end, dont paste c1 to c4 on here
$lps[] = "http://202domain.com/tracking202/redirect/dl.php?t202id=9484&t202kw=";

// Grab all vars
$kw = $_GET['kw'];

$c1= (!empty($_GET['c1'])) ? "&c1=" . $_GET['c1'] : ""; 
$c2= (!empty($_GET['c2'])) ? "&c2=" . $_GET['c2'] : ""; 
$c3= (!empty($_GET['c3'])) ? "&c3=" . $_GET['c3'] : ""; 
$c4= (!empty($_GET['c4'])) ? "&c4=" . $_GET['c4'] : ""; 

// select random lp and consolidate URL
$lp = $lps[array_rand($lps)] . $kw . $c1 . $c2. $c3 . $c4;

// send away
header("Location: $lp");
?>

To get to the bottom of this, I put in a script that logs some information to the database in the rotator to see what the fuck was going on.

Here's what I got:
Code:
Referer: http://www.trafficsource.com/sc?p=YTE5MDA4MzY1NTDk073yAWRBOP%2BEARFZqEE8ysUislcm4FCqiEjYQJnYRDlPgE%2FDoJB
URL that called script: http://mydomain.com/links/rotate.php?kw=gaywebmaster
Outgoing URL the script redirects to ($lp value): http://mydomain.com/lp/index.php?t202id=1455&t202kw=gaywebmaster

So it seems like the random keywords I'm getting are from the referer, some unique identifier from the trafficsource. My rotator seems to pass the correct keywords all the time, and I've scanned this through multiple entries. So prosper must be the one reading the wrong shit, possibly some GET leakage? I'd understand if the GET variable was similar to t202kw, but this shit is wack.

I'm stumped bros, what do?