Forum Moderators: bakedjake
The CRON I have is:
***** /usr/local/bin/lynx -source [mysite.com...] >&/dev/null
Thanks guys/girls
if you have php installed as a binary (which all current versions of php should have - type "which php" from the command line to find the location) then you can call you script from cron using the php binary:
20 * * * /usr/bin/php /path/to/your_script.php > /dev/null
at the top of your script you have a simply db query which checks whether you are logged in and if you are, executes the actions you need, otherwise exits silently.
have i understood correctly?