user2628118
user2628118

Reputation: 13

Cpanel cron run page every 5 minutes

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

Answers (2)

HarshitG
HarshitG

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

immulatin
immulatin

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

Related Questions