Issue
I'm newbie in cron commands and I need help.
I have a script on http://example.com/check/
.
Whats is command for cron to run this URL every 5 minutes?
*/5 * * * * /home/test/check.php
But I want to run URL not relative script address. How to do it?
Solution
Based on the comments try
*/5 * * * * wget http://example.com/check
[Edit: 10 Apr 2017]
This answer still seems to be getting a few hits so I thought I'd add a link to a new page I stumbled across which may help create cron commands: https://crontab.guru
Answered By - DilbertDave Answer Checked By - Marie Seifert (WPSolving Admin)