Prosper split testing LP script- any way to also test direct linking?

Status
Not open for further replies.

Sonny Forelli

Well-known member
May 8, 2008
2,330
89
48
Liberty City
I'm using the prosper script to split test landing pages and I'm wondering if there is a way to also test direct linking.

IE: say from a banner buy

I want to test

LP1
LP2
Direct to merchant

and rotate between these as you can for N landing pages by simply adding landing page links to the script.

Any way to do this using the script found here? Prosper202 Self Hosted Apps
 


For some reason skipped over the part at the end. My bad.

Ah, fuck, was replying to another thread, but had this window open also, clicked wrong tab, and continued. This should have been on another thread.
 
Last edited:
You could try just adding an additional landing page, ie: landingpage3.php, but have this one instantly redirect to the offer.

Something like this:

Code:
<?php
# landingpage3.php

<?php if (empty($_COOKIE['tracking202outbound'])) { ?>
<script src="http://mytrackingsite.com/tracking202/static/landing.php?lpip=###" type="text/javascript"></script>
<?php } ?>

header('Location: redirect-lp3.php );

?>
Code:
<?php
# redirect-lp3.php

if (isset($_COOKIE['tracking202outbound'])) {
 $tracking202outbound = $_COOKIE['tracking202outbound'];
} else {
 $tracking202outbound = 'http://mytrackingsite.com/tracking202/redirect/lp.php?lpip=###';
}

header('Location: '.$tracking202outbound);

?>
Sean
 
Status
Not open for further replies.