user2794024
user2794024

Reputation: 39

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

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

Answers (1)

Jelle Keizer
Jelle Keizer

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

Related Questions