webalizer stops

FYI, for future reference, for just one user (eg: username), it's:
Code:
echo "action=tally&value=[b]username[/b]&type=user" >> /usr/local/directadmin/data/task.queue
Also, this code
Code:
# webalizer
Webalizer V2.23-03 (Linux 2.6.34.6-xxxx-grs-ipv6-64 x86_64) English
Using logfile STDIN (clf)
Creating output in current directory
Hostname for reports is 'serveur3.3go.fr'
History file not found...
is correct and normal. It's just to ensure the binary is working. When the tally calls it, there will be options passed to it so it knows where to work. The binary without any options will always show the above message, which is normal.

John
 
Thanks for the code to use, to only one user.

For the second part of your message, I know it's normal (maybe with my poor english I am not clear sometimes)

And because you are DirectAdmin support, it would be a good thing, if webalizer installation is totally automatic !

Thanks for all, and thanks to all persons helping in this forum.
 
Thanks scsi, this really helped me out.

For anyone who's interested, it says here - http://www.directadmin.com/forum/showthread.php?t=42635&page=1
webalizer can be rather quirky to get compiled. We recommend using the pre-compiled binaries, and add any missing libraries that it needs

Instructions for installing the latest binary are here - http://help.directadmin.com/item.php?id=63

Once the binary is installed, check for missing libraries:
ldd /usr/bin/webalizer

In my case, CentOS 6.3 x64, I got:

# ldd /usr/bin/webalizer
/usr/bin/webalizer: /usr/local/lib/libpng12.so.0: no version information available (required by /usr/lib64/libgd.so.2)

scsi's tip fixed it:
rm -rf /usr/local/lib/libpng12.so.0
ln -s /usr/lib/libpng12.so.0.49.0 /usr/local/lib/libpng12.so.0
 
Back
Top