Web Hosting Talk







View Full Version : Cron Times, hwo to setup a cron to run every 15 mintues?


build-a-host
02-22-2008, 04:21 AM
Hello all, in my billing system (ClientExec) I have to setup a cron for the automatic account setup. I would like for it to run every 15 minutes to check for new orders and then setup the account.

My question is, how would I setup the cron to run every 15 minutes, in what format?
Right now I have it set as 15 *****, but that is running every hour at x:15.

Thanks in advance!

Dave Parish
02-22-2008, 04:30 AM
pretty broad and basic but still applies http://www.esyndicat.com/support/desk/knowledgebase/view/3.html

Dave Parish
02-22-2008, 04:33 AM
http://www.webhostingtalk.com/showthread.php?t=659529

build-a-host
02-22-2008, 04:40 AM
Thanks for the link, but I didn't see any info about how to setup a cron to run every 15 minutes.

rghf
02-22-2008, 04:46 AM
Set it as

*/15 * * * * /path/to/file

build-a-host
02-22-2008, 04:54 AM
Set it as

*/15 * * * * /path/to/file

Thanks, thats what I was looking for!