I have a cron that needs to run every minute
I tried
1 * * * * php /scripts/cron.php
but seems not to run every minute, why? Since in the minute tab I entered 1 for every minute
but the following runs every minute
* * * * * php /scripts/cron.php
feedback
|
|
1 in the first column doesn't mean "every minute", it means "one minute past the hour". | |||
|
feedback
|
|
"every minute" has to be entered like this:
| |||||||||||||||||
feedback
|
|
The column is the minutes in the hour to run the command, not how often to run You could go with 1,2,3,4, all the way up to 59 * * * * php /scripts/cron.php if you were bored and wanted to list out every minute manually, or you could just do what you've actually done, the * means "run every time". Ewan | |||
|
feedback
|
|
Nice explanation is on wikipedia.org: http://en.wikipedia.org/wiki/Cron#Operators | |||
|
feedback
|