What i'm trying to do is to execute an URL once every 5 minutes, it's for an update to the database:
so first i'm accessing the crontab:
crontab -e
then i add to the existing list this line:
5 * * * * /usr/bin/curl http://www.example.com/index.php/update
and i checked the DB after 5 minutes but there's no updating info. What is that i'm doing wrong? did i skip a step without knowing?
Thanks in advance guys!