• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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