in reply to CGI::Session fails to find existing sessions
Also did you check that the previous sessions created files when you stored them?
Update: since a session ID of undef makes CGI::Session creating a new one, you can omit the condition and simply call something along these lines:
$self->{'s'} = CGI::Session->new( 'driver:file;serializer:default;id:md5', $self->{'q'}, { Directory => $self->{'cfg'}->param("paths.sessions") +}, );
(untested)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: CGI::Session fails to find existing sessions
by hesco (Deacon) on Aug 17, 2009 at 16:40 UTC |