Hello,
1) I am new to all this adult traffic and I would like to know how I should do my redirections. I am using cpv lab for tracking.
You normally use a simple redirect script after someone clicks on the ad and you send them to a given LP depending on the country he is from? Is that it?
But then how do you track it on cpv lab? In Juicy ads there are many variables that can be added like these http://juicyads.com/faq.php#buyads_dynamiclinking
So I should do it like that? Ad > Redirect > cpv lab > lander > offer ??? Is that correct? Variables will not get lost in the redirect?
2) Where should I start? Juicy ads or TJ? I thought it should be Juicy but then I was sent to this link
http://stmforum.com/forum/showthread...Y-inspiration)
Thanks and sorry if my questions are too easy...
No worries! There's no such thing as a stupid question, and your questions certainly aren't stupid.
1) You're correct in the flow of the offer. You'll need to make sure that your GET variables are passed through from the redirect to the CPVLab base.php: that's just a line of code ( ".$_SERVER['QUERY_STRING']" on the end of the URL). Let me know if you need more info on that!
2) I'd recommend TJ at this point, but you can do well on either. There's rather more guidance available for TJ, though.
Thanks bbrock32. This is easy when you go like that
ad > cpv lab > lander > offer
But when you have to redirect you lose variables, I guess
ad > redirect > cpv lab > lander > offer
This should be done with juicy ads because you cannot target a single country. I still have to check how TJ works.
Put an url like this in Juicy :
http://domain.com/index.php?dgeo={dynamicGEO}&dsite={dynamicSite} etc ( add all other needed vars ).
Then put this code on your index.php file.
<?php
$query=$_SERVER['QUERY_STRING'];
$redir="http://mycpvlab.com/base.php?id=xxx".$query;
header("Location: $redir");
?>
Thanks, this will become handy as soon as I try Juicy. For now I am going to try TJ as recommended everywhere in this forum 
Thanks a lot!
@bbrock32 I was checking back all this and I am wondering where is the country redirect condition in here that is needed for Juicy Ads?
I feel it should be in some way matched with this http://stmforum.com/forum/showthread...l=1#post121137
But how?
This is what I know for now:
I use a link like that one for my campaign
http://domain.com/index.php?dgeo={dynamicGEO}&dsite={dynamicSite}
@bbrock32 I just feel this is a better solution
http://stmforum.com/forum/showthread...l=1#post121137
In yours I don't see how to add the geo redirect. And I really don't get how a tool like cpv lab still does not have a built-in redirect.
Any recommendations are welcomed 
Ah, I thought you already had that part on lock from the other thread.
Basically you add my code at the bottom of the code from the other thread :
$query=$_SERVER['QUERY_STRING'];
$campaign_url.=$query;
header("Location: $campaign_url");