Hi,
Here is an example to upload your aStats statistics on your web page (please modify with your values) :
- Put in your crontab something like that (crontab of the user aMule running) :
# Run xmule statistics every 15 minutes:
0,15,30,45 * * * * /usr/bin/logger "aStats updating, waiting ..." >/dev/null 2>&1 ;/usr/local/bin/aStats --web >/dev/null 2>&1 ; /usr/bin/lftp -c "o ftp.your.web.page -u username,password;put /home/bigbob/.aMule/bigbob-amulestats.html -o index.html;;put /home/bigbob/.aMule/aMule-online-sign.png" >/dev/null 2>&1 ; /usr/bin/logger "aStats update done ..." >/dev/null 2>&1
In this example i use lftp (an ftp client), but you can use any another one ...
A++