Cron job (php script) not running?
I have the following cron jobs configured
script 1, running each 30 minutes (15 and 45 past hour)
script 2, running once in 2 days
Both scripts run fine from the browser and log to a file. But the cronjobs appear to not be running. Any ideas?
I have the following cron jobs configured
script 1, running each 30 minutes (15 and 45 past hour)
Minute | Hour | Day | Month | Weekday | Command |
---|---|---|---|---|---|
15,45 | * | * | * | * | /usr/local/bin/php $HOME/public_html/cronjob.php |
script 2, running once in 2 days
Minute | Hour | Day | Month | Weekday | Command |
---|---|---|---|---|---|
2 | * | * | /usr/local/bin/php $HOME/public_html/cronjob2.php |
Last edited: