PDA

View Full Version : Counter / Tracker Ideas


TeamCali
05-25-2004, 10:36 AM
I would like to put script in my tgp gallery pages. I would also like to put script in my website pages to track movent, referers ect.

I do not want to do this with sex tracker. freestats ect. There are lots of free php scripts out there but sadly we do not use php in galleries. Could convert website to php but does not make sense just fora counter tracker.

Looking for ideas.

Thanks

McAttack
05-25-2004, 12:31 PM
Well if you have access to your server logs, a good web analysing software will most likely be able to tell you where surfers are going. I think Webalyzer does just that.

Gruntled
05-25-2004, 02:05 PM
I rely on AWstats for this type of information.

You might be able to find a perl script to track them for you. adding a CGI include won't make your galleries illegal, and won't require a full conversion of the pages, either.

sweet7
05-25-2004, 05:43 PM
Originally posted by Gruntled
I rely on AWstats for this type of information.

You might be able to find a perl script to track them for you. adding a CGI include won't make your galleries illegal, and won't require a full conversion of the pages, either.

you can also do a php include the same way you would do it for cgi

TeamCali
05-25-2004, 05:57 PM
Originally posted by sweet7
you can also do a php include the same way you would do it for cgi

I have tried that and recieved errors

This is what I tried

<script src="http://www.xxxx.com/counter/phpcounter.php"></script>

Give me an idea of what I am doing wrong. This a great stats program and would hate to loose it.

TeamCali
05-25-2004, 05:59 PM
Originally posted by sweet7
you can also do a php include the same way you would do it for cgi

I have tried that and recieved errors

This is what I tried

"script src="http://www.xxxx.com/counter/phpcounter.php"></script"

I took out the < and >

Give me an idea of what I am doing wrong. This a great stats program and would hate to loose it.

sweet7
05-26-2004, 10:15 AM
Originally posted by TeamCali
I have tried that and recieved errors

This is what I tried

"script src="http://www.xxxx.com/counter/phpcounter.php"></script"

I took out the < and >

Give me an idea of what I am doing wrong. This a great stats program and would hate to loose it.

you can have your server Admin set your server up so that html files are parsed as PHP and you can add the following code


<?php include 'http://www.xxxx.com/counter/phpcounter.php'; ?>


That should do it.