Anyone here uses the AXS Website Tracker Script?

They have: 472 posts

Joined: Oct 1999

Anyone here uses AXS to track their website?
My script (the latest one) doesn't seem to track referrals. I tried posting at their forum but haven't got replies for a few days.

Or can someone here recommend a script that only tracks referrals and nothing else?

------------------
Goodbookmarks.com - Tired of search engines returning links with no content or bad design? Then GoodBookmarks.com is your solution. All sites listed have at least a decent design and rich in content. And most importantly, they're all worth a BOOKMARK.

They have: 850 posts

Joined: Jul 1999

If you only want to track referrals, just use somthing simple like

code:

#!/usr/bin/perl
$ref = $ENV{'HTTP_REFERER'};
if($ref ne "")
{
open(IN,">>log.txt") or die "Cannot Open File: $!";
print IN "$ref\n";
close(IN);
}
[/code]

Than just use SSI to execute it:
<!--#exec cgi="log.cgi"-->

Hope that helps

------------------
http://www.wiredstart.com  : The Technology Start Page


[This message has been edited by robp (edited 09 April 2000).] 

They have: 472 posts

Joined: Oct 1999

[an error occurred while processing this directive]

------------------
Goodbookmarks.com - Tired of search engines returning links with no content or bad design? Then GoodBookmarks.com is your solution. All sites listed have at least a decent design and rich in content. And most importantly, they're all worth a BOOKMARK.

They have: 850 posts

Joined: Jul 1999

I made a REALLY dumb mistake in that code sorry (it was late and I was tired! ). It is fixed now

------------------
http://www.wiredstart.com : The Technology Start Page

They have: 472 posts

Joined: Oct 1999

I'm still geting the error.

About the "<!--#exec cgi="log.cgi"-->", what should I replace with the "log.cgi"?

The file was named refer.cgi and it's at http://www.goodbookmarks.com/refer/refer.cgi

------------------
Goodbookmarks.com - Tired of search engines returning links with no content or bad design? Then GoodBookmarks.com is your solution. All sites listed have at least a decent design and rich in content. And most importantly, they're all worth a BOOKMARK.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.