Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Pointing to the /admin/cron.php file set to run every 5 minutes.

    Code Block
    languagetext
    */5 * * * * php -q /path/to/hb/admin/cron.php

    This cron job is responsible for handling all tasks defined under Settings → Task List 

  2. Pointing to queue.php to run every minute.

    Code Block
    languagetext
    * * * * * php -q /path/to/hb/queue.php

    This cron job is responsible for handling background/queue tasks.


Note
titleCron task userCrontab User

When setting up cron tasks make sure to define it under the user that owns your installation directory. Do not use root user as it may cause file permission issues for your web server if cache files were generated during cron run.

...