tags:

views:

20

answers:

2

Hello guys,

I would like to write a cron job that has to run a PHP script on the 1st day of each month.

Can you please help me with this?

Thanks.

+1  A: 

Add to crontab -e this:

0 0 1 * * php /path/to/script.php

Good luck!

mosg
Thank you very much.
Psyche
A: 

try webcron.org - You can launch differents types of cron, with differents time-out.

webcron
Thanks. I will take a look.
Psyche