Prosper202 Tracking202 Export202 WorldProxy202 Meetup202 | Blog Forum Newsletter Twitter | Advertise

Tracking202 Forum

Your Email:

Hydra not tracking the subids, tracks only the clicks from #7 cpc link!

Forum202 Index >> Tracking202
Author Message
androomidaa


Joined: Jun 14th, 2008
Posts: 3

Post Posted: Aug 04th, 2008 at 8:59pm Post subject: Hydra not tracking the subids, tracks only the clicks from #7 cpc link!

I have setup everything right I guess. Heres what I did, created a new campaign, put my aff url on aff campaign with '&s=' (cloaking on).

on step #4: selected simple landing page and put http://www.mydomain.com/index.php. setup the text ad under 'direct, simple landing page'(step #5).

#step 6: heres my simple landing page html,

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title></title><meta http-equiv="refresh" content="0;url=continue.php"></head><body><script src="my static landing page tracking url" type="text/javascript"></script></body></html>

placed the outbound php redirect code i got on continue.php and put em up.

I used different US proxies (proxy.org has a big list) and cleared the cokies each time and when i paste the url from step #7 with kw=testkeyword hydra only tracks clicks but no subids or the keywords I put! hydra tracks the kws i put on the raw aff url tho so my guess is there is something wrong with t202 or the setup.

Can anyone please help me on this? I appreciate ur reply.

Back to top
T202Wes
Website Email Facebook AIM


Joined: Oct 20th, 2007
Posts: 1437

Post Posted: Aug 04th, 2008 at 10:28pm Post subject: Re: Hydra not tracking the subids, tracks only the cli

androomidaa wrote:
I have setup everything right I guess. Heres what I did, created a new campaign, put my aff url on aff campaign with '&s=' (cloaking on).

on step #4: selected simple landing page and put http://www.mydomain.com/index.php. setup the text ad under 'direct, simple landing page'(step #5).

#step 6: heres my simple landing page html,

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title></title><meta http-equiv="refresh" content="0;url=continue.php"></head><body><script src="my static landing page tracking url" type="text/javascript"></script></body></html>

placed the outbound php redirect code i got on continue.php and put em up.

I used different US proxies (proxy.org has a big list) and cleared the cokies each time and when i paste the url from step #7 with kw=testkeyword hydra only tracks clicks but no subids or the keywords I put! hydra tracks the kws i put on the raw aff url tho so my guess is there is something wrong with t202 or the setup.

Can anyone please help me on this? I appreciate ur reply.

The problem is it is META-REFRESHING out of the screen, before the t202 javascript can load.

Your going to have a put a delay on the meta-refresh, OR, a better option is to put a JS REDIRECT, AFTER the T202 JS is called like so

<body>

<script>//t202 js</script>

<script>

//now redirect

window.location='http://google.com';

</script>

</body>

Back to top
androomidaa


Joined: Jun 14th, 2008
Posts: 3

Post Posted: Aug 05th, 2008 at 3:48am Post subject: Re:

thanks for the input wes, im still a newbie to this coding thingy, can u help me a little bit so i can understand what u've just said?

between the first <script> am i going to put my t202 js code i get from the step #6 right?

i cant quite understand the second <scrip> part tho! do I put my landing page url? i mean mydomain.com/index.php?

thanx again for this

Back to top
T202Wes
Website Email Facebook AIM


Joined: Oct 20th, 2007
Posts: 1437

Post Posted: Aug 05th, 2008 at 12:50pm Post subject: Re: Hydra not tracking the subids, tracks only the clicks from #7 cpc link!

androomidaa wrote:
thanks for the input wes, im still a newbie to this coding thingy, can u help me a little bit so i can understand what u've just said?

between the first <script> am i going to put my t202 js code i get from the step #6 right?

i cant quite understand the second <scrip> part tho! do I put my landing page url? i mean mydomain.com/index.php?

thanx again for this

Sure well your First script is a META-REFRESH, that was REDIRECTING to continue.php, so were going to redo the script to redirect but not using a meta-refresh. So it'd be like this

<body>

<script src="my static landing page tracking url" type="text/javascript"></script>

<script type="text/javascript">window.location='continue.php';</script>

</body>

Back to top
androomidaa


Joined: Jun 14th, 2008
Posts: 3

Post Posted: Aug 06th, 2008 at 2:16am Post subject: Re:

thanks dude..im gonna try that

Back to top