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
remote tracking with TE3?
Moderator: Rock
Re: remote tracking with TE3?
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
include("te3/in.php"); or include("/FULL/PATH/TO/te3/in.php");
let me know if it works for you please!
kind regards,
Jim
Re: remote tracking with TE3?
hi,
thanks for answer, but after some test i used require_once and tracking seems to work perfectly.
thanks for answer, but after some test i used require_once and tracking seems to work perfectly.
-
- Posts: 4
- Joined: Wed Dec 16, 2009 1:39 pm
Re: remote tracking with TE3?
and how is its code?texpert wrote:Hi, remote tracking is also available in TE3
Re: remote tracking with TE3?
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
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