Reputation: 13
My page in not reloading every 5 minutes, Im using this cron:
*/5 * * * * curl http://www.mysite.com/index.php
Note: I have seen a similar question about this, but it wasnt talking about my specific problem.
Upvotes: 1
Views: 4696
Reputation: 2827
If you are using shared hosting , they they will not allow you to manually configure cron jobs.
You can set 60 crons for same script per hour starting at different minute of hour.
Upvotes: 0
Reputation: 2118
If your index.php is on the local system than just run it as if it were a script:
*/5 * * * * php /path/to/my/site/index.php
Upvotes: 1