Possible Duplicate:
cron : how to schedule to run first Sunday of every month
I want to execute a php script on every first sunday in month at 7 am . I entered the following line in the servers crontab.
0 7 1-7 * 0 user /path/to/script.php
Today I saw that the script did run on wednesday morning. How could that happen? I thought that the last 0
defines sunday?
Thanks for your help in advanced.