Quote:
Originally Posted by allan grossman
Strange.
Running the script through a browser window works perfectly - running it as a cron job with lynx has started giving me 'Unable to add cookies, headers already sent' errors.
command line is
lynx -source http://forum.com/vb3/gateway.php > /var/log/cron.usenet
Any ideas?
|
This error means the script tries to set cookie, but the header has already been sent.
You might like to try:
Code:
lynx -source "http://forum.com/vb3/gateway.php?log=cron"
in your cron file.