Web Hosting Talk







View Full Version : Stats mailed to me?


TubuNet
03-20-2007, 08:33 PM
(Maybe this is in the right place, if not I'm sure it'll be moved)


Does anyone know of a way to have site stats e-mailed daily?

Call me lazy but logging in and checking AWStats daily is a lot of work ;)

Any suggestions would be appreciated.

Thanks

Patrick
03-20-2007, 09:09 PM
Does it have to be AWStats - and are you using cPanel?

TubuNet
03-20-2007, 09:12 PM
no (doesn't have to be AW, just something efficient) and yes (I am running cPanel)

Patrick
03-20-2007, 09:50 PM
Here's a quick shell script that you can run as a cronjob to mail you the output from this months Webalizer statistics:

#!/bin/sh
uuencode /home/user/tmp/webalizer/usage_200703.html /home/user/tmp/webalizer/usage_200703.html > /home/user/tmp/webalizer/usage_200703.mail.html
mail your@email.com < /home/user/webalizer/usage_200703.mail.html

The uuencode is required in order for the HTML to show up in a readable format under your mail client.

Edit: That's one line, so I suppose you could also run directly (under a cronjob).

TubuNet
03-20-2007, 09:58 PM
there's nothing.... automatic or.... easier?