Versions Compared

Key

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

...

Once Opigno is installed, don't forget to add a CRON task, which will highly improve the performance of your Opigno platform. You can find the URL to be called in the menu Report -> Status report (or by visiting the page http://your.domain.tld/admin/reports/status). The CRON task should then be defined as:

Code Block
0*/5 * * * * wget -O - -q -t 1 http://url.to.be.called

if you want an hourly CRON in order to setup a CRON task that will run every 5 minutes and where url.to.be.called is the URL displayed in the Status report page.To add a new CRON task on a Debian server, simply type in a terminal crontab -e then paste the instruction above, replace the url, save, and then restart the cron daemon with /etc/init.d/cron restart

...