Page 1 of 1

incoming tracking

Posted: Fri May 14, 2010 5:58 pm
by yoshii55
Hi!
I've installed TE free but incoming hits are not being tracked. I chose php tracking and inserted the appropriate tag in the html header on my index.html page. It's not tracking any of the incoming hits. I'm a complete newbie at this stuff, so I know it's probably something very simple that I'm overlooking. Help would be greatly appreciated.
Thanks

Re: incoming tracking

Posted: Sat May 15, 2010 8:01 pm
by leva
Hi. Maybe you need rename you page to index.php and it will works for you? :)

Re: incoming tracking

Posted: Sat May 15, 2010 8:12 pm
by leva
Or you can try to use code for Remote Tracking:

Code: Select all

<SCRIPT language=JavaScript>
<!--
var ref = parent.document.referrer;
var rnd = Math.floor(Math.random() * 99999999);
document.write('<div><img src=http://sub.domain.com/cgi-bin/te/in.cgi?p=default&remote=1&rnd='+rnd+'&refremote='+ref+' width=1 height=1 border=0></div>');
// -->
</SCRIPT>
Just replace sub.domain.com with your domain name.
The following tracking code should be placed between HTML headers on domain.com

Have nice trade ;-)

Re: incoming tracking

Posted: Sat May 15, 2010 9:10 pm
by yoshii55
Thanks Leva, I will try the remote tracking method you suggested.