I have a file in mysite.com/url1/url2/cronjob.php which has to be run every minute. I try every combination, but can't succeed. What should I run in command line? Thank you.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In case you'd set it up in a crontab, this works:
|
|||||||||||||||
|
|
Steps your shell
|
|||
|
|
|
Are you looking for help to make an UNIX cronjob? If so, have you tried to edit /etc/crontab, and add
where user is either root or your name. Im not exactly sure how to access and URL, but a dirty way could involve downloading the link as a file, e.g. "wget http://url.com/page.php" |
||||
|

1 * * * * /path/to/commandshould do it. – alexn Feb 4 '11 at 18:04