Thanks a lot! What part of the command stops lynks? What are the 0,1,2... stand for?
Rob Sayers wrote:
As far as how the crontab (the cron config file) should be setup, the numbers should read:
and to run lynx to execute a php script you'll want to run it as:
lynx -source http://www.host.com/script.php > /dev/null
which has lynx fetch the page and dump the source and then exit, and of course redirecting it to /dev/null will stop it from outputting anything.
So in the end, the line of the crontab should look like:
you may actually have to define the exact path of lynx depending on how your host is setup, it will most commonly be in /usr/bin/lynx, or /usr/local/bin/lynx
Hope this helps!