Page 1 of 1

Incoming Traffic Tracking

Posted: Fri Jun 01, 2012 11:37 pm
by zithromax
New to this trading script and trading itself so please be gentle. ;) I currently have TubeX and within the global-header.tpl I have added

Code: Select all

<!--#include virtual="/te3/in.php?$QUERY_STRING" -->
between the <head> </head> tag. I am not sure if this is quite correct as the manual states the code is for shtml extensions, could someone please advise? Thanks!

Re: Incoming Traffic Tracking

Posted: Fri Jun 01, 2012 11:44 pm
by afamintas
If your page is http://www.yourdomain.com/index.shtml the extension is correct. If php has to be another code.
To php:

<? virtual('/te3/in.php?'.$_SERVER['QUERY_STRING']); ?>
Cheers

Re: Incoming Traffic Tracking

Posted: Fri Jun 01, 2012 11:58 pm
by zithromax
Thats the thing, TubeX has tpl extensions. No shtml or php. Not sure what to do here.

Re: Incoming Traffic Tracking

Posted: Sat Jun 02, 2012 12:07 am
by afamintas
zithromax wrote:Thats the thing, TubeX has tpl extensions. No shtml or php. Not sure what to do here.
Put here the URL of your site.

Re: Incoming Traffic Tracking

Posted: Sat Jun 02, 2012 12:08 am
by zithromax

Re: Incoming Traffic Tracking

Posted: Sat Jun 02, 2012 12:12 am
by afamintas
Your site has php extension, so you already know what the code will have to put in your global-header.tpl

Code: Select all

<? virtual('/te3/in.php?'.$_SERVER['QUERY_STRING']); ?>
http://www.mongertube.com/index.php

8-)

Re: Incoming Traffic Tracking

Posted: Sat Jun 02, 2012 12:32 am
by zithromax
Thanks afamintas for the help.

Found out that TubeX uses Smarty, needed to add the code like this to the global-header.tpl

Code: Select all

{php}include("/full/path/to/te3/in.php");{/php}

Re: Incoming Traffic Tracking

Posted: Sat Jun 02, 2012 12:34 am
by afamintas
zithromax wrote:Thanks afamintas for the help.

Found out that TubeX uses Smarty, needed to add the code like this to the global-header.tpl

Code: Select all

{php}include("/full/path/to/te3/in.php");{/php}
As I do not know your script at least gave the idea would be like. ;)