i have some old traffic sources that have links hardcoded to images using p202 lps, so my links look like http://www.tracker/202/redirect/dl.p...=42339&t202kw=
that main domain is not expired but i no longer have a p202 on there, is there anyway on the backend were i can set thes to maybe a .php file on my server were i can put my cpvlab links, im not trying to track any tokens just trying to get some old ads back live.
1. Re-establish the file path, i.e. make a 202/redirect/ folder and add a dl.php file.
2. Change the code in the PHP file to just bounce people to your CPVLab link.
e.g.
<?php
header('Location: http://cpvlablink.com?subid=zombie_traffic');
?>
that makes sense but how do i get into the back end of p202?
sorry i mean to say i do have them going to a a prosper202 link, but i want to change it to a cpv lab link so somehow i need to go into the backend of prosper202 and change it were it sends that campaign to cpvlab
You want to transfer all the data from that old p202? Can you still access that tracker's DB and do lookups there?
yes i can access my 202 its still live, the thing is i have all these old campaigns on a traffic source that i havent ran i a while, but the links at the traffic source level pointing to all these 202 links, i want redirected somehow to a php file were i can change over to my cpvlab link.
I think Zeno's reply is the easiest way to implement it, unless you want to keep that 202 directory active.
Have you tried just changing the lander link inside your 202 setup to a PHP file that extracts the request header parameters and then assigns them to variables that you can add to your CPVLab link?
I'm on my phone now so excuse the brevity but something like:
<?
extract($_REQUEST);
header('Location: http://cpvlablink.com?subid=' . $subid);
?>
I'm not a programmer so there my be a better extraction method but I use this kid of thing for Adwords
ya i just logged into the backend of my 202 and i see the dl.php file so i am going to try out zenos method
ok doing that did not work, i changed the dl.php to what zeno said, still sends to my 202 link
If your ads are linking to this:
hxxp://www.tracker.com/202/redirect/dl.php?t202id=42339&t202kw=
And you go to the right server, into the right folder then 202/redirect/ and change the dl.php file to something like I suggested, and it still goes to the wrong place, the problem won't be with the dl.php file - it will be that yo are getting cached redirects or the dl.php file that you changed is not actually where the links are going.
Could it be that you have something caching the redirect e.g. memcache?
That's possible but how can I check , I know I'm in the right server and directory
Idk how to check memcache or cache stuff... But the quickest solution to me would then be to just change the lander link in your 202 campaign to a PHP file with the code I posted above
At least until you figure out how to find/check the cache stuff or find whatever the root cause is of why those redirects are going to old camps
Change the dl.php file to read
<h1>YEP, THIS IS THE RIGHT FILE</h1>
ok did that and uploaded, looks like some caching is going on i see a folder with under tracking202/redirect/cached which has a htaaccess file. i removed that didnt change anything.
if i could fine were my individiual offers are on my ftp to my p202 links i could set redirects there but i cant find those anywere. for example in 202 we have step 3 which is campaigns, how can i find the location of those on the backend, then i can just setup those to diff. .php redirects.
Not sure what you mean by this?
Do you mean you originally had campaigns linking not to affiliate links but to random files on your server for some reason?
I'm still not quite sure why you can't go plug in CPV Lab links in your campaign setup, but maybe p202 generates new links for all these changes = old ones still go to old links?
Perhaps you can use something like PHPmyAdmin to get into the database and change offer links for the specific t202id campaigns in question.
OK, next step - check your access logs immediately after you have loaded the dl.php URL. You can probably find them either at /var/logs/ or directly below your public HTML directory.
Find the most recent entry in there - if this is an inactive server, that should be you clicking on dl.php. The log will show you where the server is fetching that file from.
ok i think this will work in php admini can find each campaign id and change it there . testing now.