in reply to Tailing the access log

Well we are doing a similar job in this way:
fork && exit; ### making a daemon open FILE, "ACCESS"; for (;;) { while (<FILE>){ $lines++; } print "$lines to somewhere, maybe to another file"; $lines=0; sleep 3600; }
This script works as a deamon.
You can write the numbers to another file,
or maybe you can blow this script off, to generate a new webpage with all the statstics you need :)

----------------------------------- --the good, the bad and the physi-- -----------------------------------