I would like to write a cron job that should run a PHP script on the first day of every month.
Could you help me with this?
Thanks.
Add this to crontab -e:
0 0 1 * * php /path/to/script.php
Good luck!