So I'm trying to run a cron job every 5 minutes, and I think I have it configured correctly, but it's not doing anything. No output log, no emails or errors or anything. I need it to ping a url on my domain every 5 minutes, but it doesn't seem to be doing that. I'm positive my script is not an issue, because when I run the same command from my computer's ubuntu terminal, it works fine.
*/5 * * * * /usr/bin/curl http://mydomain.x10host.com/crons/cron_fivemins.php
Is there something obvious I'm missing?
*/5 * * * * /usr/bin/curl http://mydomain.x10host.com/crons/cron_fivemins.php
Is there something obvious I'm missing?