in reply to Perl Cgi Session cookie initializing

You're printing two "Content-type" headers. Remember, the FIRST thing your script has to emit is a valid Content-type header, one that includes the cookie if you're trying to set one.

Fix your header problems and your script should work fine.

-Any sufficiently advanced technology is
indistinguishable from doubletalk.

  • Comment on Re: Perl Cgi Session cookie initializing

Replies are listed 'Best First'.
Re: Re: Perl Cgi Session cookie initializing
by koryw (Novice) on Mar 13, 2003 at 15:36 UTC
    Thanks that was the problem. I appreciate your response.