howto make webstats update more frequently

D

devindull

Guest
Anyone know what crontab controls webstats? I would like to get the visitor traffic information calculated twice or three times a day rather than just at 4am.
 
The cron job is:

7 * * * * /usr/local/psa/admin/sbin/statistics >/dev/null 2>&1

To change it to every 8 hours do:

7 */8 * * * /usr/local/psa/admin/sbin/statistics >/dev/null 2>&1
 
Back
Top