jlasman said:Probably because you've got the fields confused.
The first field is for minutes, the second for hours.
To run a job every hour the first two fields should be:
x *
where "x" should be replaced by the exact minute you want it to run at. For example:
3 *
will run three minutes after every hour.
If you want it to run every minute, then the first two fields should be
* *
so the cron job will run every minute of every hour.
Jeff
ballyn said:If you wanted to run at 10 minutes after the hour every 4 hours:
10 */4 * * *