| How to setup this cron job?
|
brakkar

msg:908329 | 11:40 am on Oct 20, 2004 (gmt 0) | Hello, I was give this instruction: | setting a cron job to load the url using wget, or some other command line tool, every 10 - 15 minutes |
| The url being like: [mysite.com...] . So what should I put in cron to have this loaded avery 15 minutes, and how can I check that it does its job correctly? Thanks in advance, Brakkar
|
mcavic

msg:908330 | 4:27 pm on Oct 20, 2004 (gmt 0) | The crontab entry would look like: | */15 * * * * /home/joe/myscript |
| Then myscript should call wget and do whatever else is necessary.
|
robertito62

msg:908331 | 4:38 pm on Oct 20, 2004 (gmt 0) | There are issues between cron and php. Your ISP must be able to run php executables: [htmlcenter.com...]
|
brakkar

msg:908332 | 5:08 pm on Oct 20, 2004 (gmt 0) | Ok, i'm trying with: something similar to: * * * * * lynx -dump [somedomain.com...] from the article. But what should I add so it will not mail me messages about what it did, especially when it is succesful? Thanks, brakkar
|
nalin

msg:908333 | 5:11 pm on Oct 20, 2004 (gmt 0) | * * * * * lynx -dump http://www.somedomain.com/cron.php[b] > /dev/null[/b] If you want a record of the transactions you might want to use /path/to/log.txt rather then /dev/null, but in anycase redirecting via ">" will eliminate emails for the jobs unless an error occurs.
|
MattyMoose

msg:908334 | 3:36 am on Oct 21, 2004 (gmt 0) | That cron you have right now (with the 5 *'s) will run your job every minute. If you want every 15 minutes, you should do as mcavic suggested, and use And to prevent output completely, your cron should look like: */15 * * * * /path/to/command >/dev/null 2>&1 |
| You won't get notifications of failures, though. If you want those, use nalin's redirect method. That remote script you're running, you're not actually executing PHP on it, correct? You're just getting some HTML or XML back from the page on the remote server? If that's the case, then using wget should be fine as well, since you're not actually executing the PHP binary on your hosts' systems. -MM
|
|
|