• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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