June 18, 200719 yr Hi all, not posted here in a while!!! I have setup a Crontab in apache:15 * * * * path/to/my/php/scriptNow I am not sure but does this mean that my crontab will run my script every 15 minutes? or does it mean it will run the script once an hour on the 15th minute?I have googled a lot this afternoon and could not really find anything that clarified this.Any help appreciated.
June 18, 200719 yr That will run every hour at the 15th minute. For every 15 mins, use 15,30,45,59 * * * * commandMore here: http://en.wikipedia.org/wiki/Crontab# Use the hash sign to prefix a comment# +---------------- minute (0 - 59)# | +------------- hour (0 - 23)# | | +---------- day of month (1 - 31)# | | | +------- month (1 - 12)# | | | | +---- day of week (0 - 7) (Sunday=0 or 7)# | | | | |# * * * * * command to be executed
Create an account or sign in to comment