I need a hit counter for my website what to use? I am the server

SnowPunk98

Banned
Jun 15, 2001
4,933
0
0
I need a hit counter for my website. I have a domain name and the server is in my room. I want something that will count hits and like when and what day they hit. I would if possible like a program that I can put on my server rather than a web based 3rd party
 

falconx80

Senior member
Jan 23, 2000
332
0
0
if u got win2k...create your own damn counter with sql/asp
and store all ip address in your sql database.
 

notfred

Lifer
Feb 12, 2001
38,241
4
0
a hit couter is not hard to write.

simple hit counter:

open(A, ">file");
@t = <A>;
$t[0]+=1;
print A @t;
print "this page has been viewed @t times";
close(A);
 

udonoogen

Diamond Member
Dec 28, 2001
3,243
0
76
www.sitemeter.com .... theres this one counter that is simply numbers. no ads or words. simple and looks nice. i use it on my site.

if you want to put something on your server ... i think you can probably do that with some PERL scripting. can't help u there tho.