shtml & webalizer problem

You should contact DirectAdmin support regarding the 1st problem. About the 2nd, try to run this manually:
Code:
echo 'action=tally&value=all' >> /usr/local/directadmin/data/task.queue
/usr/local/directadmin/dataskq d
 
Thx for your reply smtalk.

Unfortunately it still doesn't work so I mailed DA support ;)
 
for the record, beneath the solution which solved both the shtml and webalizer problem

> if you still see the "combined" message in your logs, then edit the
> httpd.conf you've included and change:
>
> <IfModule mod_logio.c>
> LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\"
> \"%{User-Agent}i\"" combined
> LogFormat "%h %l %u %t \"%r\" %>s %O" common
> LogFormat "%O" bytes
>
> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
> \"%{User-Agent}i\" %I %O" combinedio
> </IfModule>
>
> to:
>
> LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\"
> \"%{User-Agent}i\"" combined
> LogFormat "%h %l %u %t \"%r\" %>s %O" common
> LogFormat "%O" bytes
>
> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
> \"%{User-Agent}i\" %I %O" combinedio
>
> Basically, just remove the <IfModule mod_logio.c> lines (</IfModule> too)
 
Back
Top