Home >
General >
Affiliate Marketing Forum
Tracking202 Mods? (9)
08-23-2011 05:04 PM
#1
getgreen (Member)
Tracking202 Mods?
I hear a lot of people talking about T202 mods but I'm not quite sure why they exist, what they do or where to get them. Does anyone have any other info on this? I've used T202 "out of the box" and it's worked great for me, but I'm just wondering if anyone has good mods you can recommend that might help make it better?
08-23-2011 06:46 PM
#2
leber026 (Member)
As far as I know you can't modify Tracking202(hosted version), however there some mods available for prosper202(self hosted version). If you are running prosper check out the following couple links.
http://www.ad-trackr.com/1077/add-co...odded-version/
http://nerdyaffiliate.com/pay-per-cl...or-1-5-x-1-6-x
There might be more mod's out there, I don't know because I've been using cvlab lately.
08-24-2011 02:01 PM
#3
bbrock32 (Administrator)
Also , there are 2 exclusive mods in this forum.
One is used to upload correct CPCs from traffic sources and one to update revenue from SilverPath using their API.
Just do a quick search and you will find them here.
08-24-2011 02:22 PM
#4
getgreen (Member)

Originally Posted by
bbrock32
Also , there are 2 exclusive mods in this forum.
One is used to upload correct CPCs from traffic sources and one to update revenue from SilverPath using their API.
Just do a quick search and you will find them here.
I searched but can't seem to find any of these, any ideas on what else to search for besides "tracking 202 mods"? Or who uploaded them?
08-24-2011 02:34 PM
#5
bbrock32 (Administrator)
Here ya go :
1 - http://stmforum.com/forum/showthread...t=beta+testing
2 - http://stmforum.com/forum/showthread...=automagically
08-24-2011 09:32 PM
#6
rich (Member)
Has anyone downloaded/installed the geo mod so that it displays the users country flag in the spy view etc?
This is the url (http://prosper.tracking202.com/apps/docs/geolocationdb/) but doesn't seem to work anymore
11-15-2012 07:00 PM
#7
thechintanshah (Member)
A major problem I face is I can't seem to change the landing page out code depending on the referrer.
I want it to go to site A when source 1 clicks and site B when source 2 clicks. So anything on that?
11-15-2012 10:47 PM
#8
andy_a (Member)

Originally Posted by
thechintanshah
A major problem I face is I can't seem to change the landing page out code depending on the referrer.
I want it to go to site A when source 1 clicks and site B when source 2 clicks. So anything on that?
You could track a c variable and have PHP place the proper out path in the CTA or clickout.
Here's a sample assuming you use the c1 variable as an indicator of which source your user is coming from (could be c2, c4, or something custom if you wanted):
[PHP]
// Define a default offer out code in the event the switch isn't triggered (just a failsafe)
$out_path = 'http://yourdomain.com/go/default.php';
switch($_GET['c1']) {
case 'ipad':
$out_path = 'http://yourdomain.com/go/ipad-offer.php';
break;
case 'iphone':
$out_path = 'http://yourdomain.com/go/iphone-offer.php';
break;
case 'dailydeal':
$out_path = 'http://yourdomain.com/go/dailydeal-offer.php';
break;
}
[/PHP]
Then echo $out_path where you have your href:
[php]
<a href="<?php echo $out_path; ?>">Click here to go to your offer</a>
[/php]
11-16-2012 02:54 PM
#9
thechintanshah (Member)

Originally Posted by
andy_a
You could track a c variable and have PHP place the proper out path in the CTA or clickout.
Here's a sample assuming you use the c1 variable as an indicator of which source your user is coming from (could be c2, c4, or something custom if you wanted):
// Define a default offer out code in the event the switch isn't triggered (just a failsafe)
$out_path = 'http://yourdomain.com/go/default.php';
switch($_GET['c1']) {
case 'ipad':
$out_path = 'http://yourdomain.com/go/ipad-offer.php';
break;
case 'iphone':
$out_path = 'http://yourdomain.com/go/iphone-offer.php';
break;
case 'dailydeal':
$out_path = 'http://yourdomain.com/go/dailydeal-offer.php';
break;
}
Then echo $out_path where you have your href:
<a href="<?php echo $out_path; ?>">Click here to go to your offer</a>
Man Thanx so much!
I owe you one!
Home >
General >
Affiliate Marketing Forum