Re: No output from wwwstat
Roy T. Fielding (fielding@kiwi.ics.uci.edu)
Fri, 06 Mar 1998 18:00:24 -0800
>I've tried to parse the log file on our web server with wwwstat but got
>no output. I've used "wwwstat -a '.com$' > test.html"
Try
wwwstat -a '.com$' the_file_name > test.html
to see if it is just defaulting to the wrong file, or
wwwstat the_file_name > test.html
to see if it is just the -a option, or
wwwstat -e the_file_name > test.html
to see if the logfile is in the wrong format, or
perl -d wwwstat the_file_name
to use the debugger.
....Roy