On Sat, 18 Aug 2001, Joachim Zobel wrote:

> I have a handler that needs to use CGI.pm to set a cookie. It seems to work 
> correctly, but it fills my error log with "(offline mode: enter name=value 
> pairs on standard input)" messages. I am doing

If you are only using CGI.pm to set a cookie, you should really be using
Apache::Cookie instead.  It is much smaller and faster.

But if you still want to use CGI.pm, you can load CGI.pm with debugging
turned off.  This should stop it from entering 'offline' mode.

use CGI qw/-no_debug/;


Cees

Reply via email to