One or several logfiles option

Usually, httpd server are logging requests in one log file.
On NCSA server, log name is access_log
On CERN server, log name is httpd-log
In the config.pl file, you have to edit : $zip = 0

For CERN users, your server can produce a different logfile everyday by adding the current date at the end of the log filename. There is a patch which cured this bug (see www.w3.org). If you don't want to install the patch, make a link each day to a fixed log filename (httpd-log for example !) via a crontab.

Log files are growing very fast (especially for NCSA log file which can't disable local requests logging)
I'm using a small script newhttpdlog to cut and compress the log file each month.
Compression rate is around 10% of the initial file saving a lots of disk space. W3Perl can cope with these compressed log files.
W3Perl will also run faster as it will have only to scan the current month logfile.

In the config.pl file, you have to edit : $zip = 1