How to load a webpage to refresh data using Cron Job in Cpanel

3.7k Views Asked by At

I have a webpage in Php domain.com/page/ and I need that page to load automatically every month to refresh the data because I am pulling data on that page from another app. Can you help me on the Cron command to load that webpage?

1

There are 1 best solutions below

6
On BEST ANSWER

go to your shell and type crontab -e

add this line to the contab

0 0 1 * * wget http://domain.com/page/ >/dev/null