Home > Paid Traffic Sources > Adult Traffic (NSFW)

Some adult traffic questions (8)


12-09-2013 04:42 PM #1 kamaleon (Member)
Some adult traffic questions

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...


12-10-2013 12:24 PM #2 caurmen (Administrator)

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.


12-11-2013 06:39 AM #3 kamaleon (Member)

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.


12-11-2013 08:34 AM #4 bbrock32 (Administrator)

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.

Code:
<?php
$query=$_SERVER['QUERY_STRING'];
$redir="http://mycpvlab.com/base.php?id=xxx".$query;
header("Location: $redir");
?>
Make sure you also set up cpvlab like in my post above and the variable names in Parameter filed on CPVLab match the ones you append on the index.php file.


12-11-2013 10:28 AM #5 kamaleon (Member)

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!


12-28-2013 02:55 PM #6 kamaleon (Member)

@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

Code:
http://domain.com/index.php?dgeo={dynamicGEO}&dsite={dynamicSite}
And in index.php I have it like that

<?php
$query=$_SERVER['QUERY_STRING'];
$redir="http://mycpvlab.com/base.php?id=xxx".$query;
header("Location: $redir");
?>
Where do I redirect to each lander depending on the country the user is from?


12-28-2013 03:55 PM #7 kamaleon (Member)

@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


12-29-2013 03:36 PM #8 bbrock32 (Administrator)

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 :

Code:
$query=$_SERVER['QUERY_STRING'];
$campaign_url.=$query;
header("Location: $campaign_url");


Home > Paid Traffic Sources > Adult Traffic (NSFW)