Cron jobs run scripts automatically at specified times.
| Schedule | Settings |
|---|---|
| Every hour | 0 * * * * |
| Every day at midnight | 0 0 * * * |
| Every day at 6am | 0 6 * * * |
| Every Monday at 9am | 0 9 * * 1 |
| Every 5 minutes | */5 * * * * |
/usr/bin/php /home/user/public_html/cron.php
/usr/bin/php /home/user/public_html/wp-cron.php
/usr/bin/curl -s https://yourdomain.com/cron.php
Add to the end of your command:
>/dev/null 2>&1
Was this article helpful?