RaginElmo has asked for the wisdom of the Perl Monks concerning the following question:
When I debug I can see the header: Set-Cookie: CGISESSID=3b488a17c9cce9bc4dcf4654db65364c; path=/ and IE says it accepted the cookie. However When loading a new framepage using the same... my $session = new CGI::Session(undef, undef, {Directory=>'c:\perl\temp +\sessions'}); $session->param('UID', $UID); $session->param('UNME', $UNME); $session->param('GID', $GID); print $session->header(); ...
which should check if the cookie is already created, a new cookie is generated, therefore loosing all my session details. Any ideas? Thanks!my $session = new CGI::Session(undef, undef, {Directory=>'c:\perl\temp +\sessions'});
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI::Session multiple cookies
by RaginElmo (Novice) on Oct 11, 2005 at 20:28 UTC | |
|
Re: CGI::Session multiple cookies
by tomazos (Deacon) on Oct 11, 2005 at 17:35 UTC | |
|
Re: CGI::Session multiple cookies
by RaginElmo (Novice) on Oct 11, 2005 at 17:47 UTC | |
|
Re: CGI::Session multiple cookies
by RaginElmo (Novice) on Oct 11, 2005 at 19:39 UTC |