My host has PHP compiled as an Apache module.
I am hoping to run the cron.php file every 5 minutes. The file is just a test and sends me an email. That's all.
Either I have specified the wrong path or my syntax is wrong because it is not working.
then tried:
What am I doing wrong?
I am hoping to run the cron.php file every 5 minutes. The file is just a test and sends me an email. That's all.
Either I have specified the wrong path or my syntax is wrong because it is not working.
Code:
MAILTO=myemailaddress.com
*/5 * * * * /home/xxx/webs/xxx/htdocs/cron.php
Code:
MAILTO=myemailaddress.com
*/5 * * * * php -q /home/xxx/webs/xxx/htdocs/cron.php
What am I doing wrong?