Reputation: 39
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?
Upvotes: 0
Views: 3875
Reputation: 721
go to your shell and type crontab -e
add this line to the contab
0 0 1 * * wget http://domain.com/page/ >/dev/null
Upvotes: 1