remote tracking with TE3?

Our support will answer all your general questions here.

Moderator: Rock

Post Reply
ya
Posts: 2
Joined: Tue Apr 03, 2012 10:09 am

remote tracking with TE3?

Post by ya »

Hi,

as soon as i add the
<?php virtual('/te3/in.php?'.$_SERVER['QUERY_STRING']); ?>
in my page, i just got a blank page on reload, with no error message at all.
Seems virtual is not allowed on my server.

i found a lot of post saying remote tracking should work, but in the manual i can't find any infos on remote tracking with TE version 3.
In older post i've found this code:
<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 ... mote='+ref+' width=1 height=1 border=0></div>');
// -->
</SCRIPT>
But there is no cgi files in the TE3 archive.

How to get it work? is there any other way to use it? i tryed with include and require but could not make it work.
Any help?

Thanks
texpert
Site Admin
Posts: 719
Joined: Sat Mar 14, 2009 5:54 pm

Re: remote tracking with TE3?

Post by texpert »

Hi, remote tracking is also available in TE3, but in your case i would recommend you to use include instead:

include("te3/in.php"); or include("/FULL/PATH/TO/te3/in.php");

let me know if it works for you please!

kind regards,
Jim
ya
Posts: 2
Joined: Tue Apr 03, 2012 10:09 am

Re: remote tracking with TE3?

Post by ya »

hi,

thanks for answer, but after some test i used require_once and tracking seems to work perfectly.
monsterman
Posts: 4
Joined: Wed Dec 16, 2009 1:39 pm

Re: remote tracking with TE3?

Post by monsterman »

texpert wrote:Hi, remote tracking is also available in TE3
and how is its code?
texpert
Site Admin
Posts: 719
Joined: Sat Mar 14, 2009 5:54 pm

Re: remote tracking with TE3?

Post by texpert »

Code for remote tracking can be found on this URL:
http://tradeexpert.net/incoming_remote_new.txt

However we strongly recommend to use standard include. Remote tracking is less accurate and should only be used if you can't use "PHP include" or SSI tracking for some reason.

regards,
Jim
Post Reply