View Single Post
Old 01-11-2003, 10:30 AM  
extreme
Confirmed User
 
Industry Role:
Join Date: Oct 2002
Location: lalaland
Posts: 2,120
cd /tmp
wget ftp://ftp.mrunix.net/pub/webalizer/w....01-10-src.tgz
tar zxvf webalizer-2.01-10-src.tgz
cd webalizer-2.01-10
./configure
make
make install
man webaliser (read)
[pico/vim/emacs/editor of choice] /etc/webalizer.conf
webalizer



I got a shellscript that I use to gen stats for all my domains:

--------- log.sh ----------
#!/bin/sh
PATH=/usr/local/bin:$PATH
TZ=CET
export TZ

p="/path_to_the_access_logs/"
out="/path_to_your_passwordprotected_statsdir/"

x="domain1.com"; webalizer -o $out/$x/ $p/$x-access_log -r $x
x="domain2.com"; webalizer -o $out/$x/ $p/$x-access_log -r $x
.
.
.
----------------------------
extreme is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote