is there a way to just turn webalizer off completly?
with awstats, it seems to just be in the way?
tony
*********** REPLY SEPARATOR ***********
On 4/10/2008 at 4:41 PM Michael Stauber wrote:
>Hi Dan,
>
>> Warning: Truncating oversized request field
>> Warning: Truncating oversized date field
>> Skipping bad record (9113)
>> Warning: Truncating oversized referrer field
>> Warning: Truncating oversized referrer field
>> Warning: Truncating oversized referrer field
>
>Edit /etc/cron.daily/00webalizer and change this part of it ...
>
>if [ -s /var/log/httpd/access_log ] ; then
> /usr/bin/webalizer
>fi
>
>... to this:
>
>if [ -s /var/log/httpd/access_log ] ; then
> /usr/bin/webalizer -Q
>fi
>
>That will fix the issue. The messages appear when Webalizer is parsing a
>line
>in the Apache logfile with a long referrer field. In that case it simply
>truncates the information in the referer field and moves on.
>
>The "-Q" switch to Webalizer suppresses ALL messages and makes it totally
>quiet. If you want to suppress just info messages, but not warnings, then
>use "-q" instead.
>
>--
>With best regards,
>
>Michael Stauber