Re: Strange thing about CGI::Cookie?

2000-05-29 Thread test



I had no clue either, but using the Apache Cookie module instead fixed it.

Arnold


On Mon, 29 May 2000, Kenneth Lee wrote:

> I see this line in my error_log,
> 
>   (offline mode: enter name=value pairs on standard input)
> 
> And I sure it is caused by CGI::Cookie->parse (or fetch).
> Any idea why this would happen?
> 
> Kenneth
> 




Re: Strange thing about CGI::Cookie?

2000-05-29 Thread Stas Bekman

On Mon, 29 May 2000, Kenneth Lee wrote:

> I see this line in my error_log,
> 
>   (offline mode: enter name=value pairs on standard input)
> 
> And I sure it is caused by CGI::Cookie->parse (or fetch).
> Any idea why this would happen?

Looks like CGI.pm's command line debug mode somehow gets triggered. In all
my code that uses CGI.pm I have: 

  use CGI;
  $CGI::NO_DEBUG = 1;

I guess it's the same thing with CGI::Cookie

_
Stas Bekman  JAm_pH --   Just Another mod_perl Hacker
http://stason.org/   mod_perl Guide  http://perl.apache.org/guide 
mailto:[EMAIL PROTECTED]   http://perl.org http://stason.org/TULARC
http://singlesheaven.com http://perlmonth.com http://sourcegarden.org




Strange thing about CGI::Cookie?

2000-05-29 Thread Kenneth Lee

I see this line in my error_log,

  (offline mode: enter name=value pairs on standard input)

And I sure it is caused by CGI::Cookie->parse (or fetch).
Any idea why this would happen?

Kenneth