tbone has asked for the wisdom of the Perl Monks concerning the following question:
sub setup { my $self = shift; my $q = $self->query(); $self->start_mode('mode1'); $self->run_modes( 'mode1' => 'mode1', 'mode2' => 'mode2', 'mode3' => 'mode3'); $self->tmpl_path('template/'); my $session = new CGI::Session(undef, $q, {Directory=>"sessions"}) +; $session->expire('+5m'); my $session_id = $session->id(); $self->param('session' => $session); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: delete session using CGI::Session
by shenme (Priest) on Oct 08, 2003 at 17:09 UTC | |
by tbone (Beadle) on Oct 08, 2003 at 17:26 UTC | |
by shenme (Priest) on Oct 08, 2003 at 18:44 UTC | |
by LTjake (Prior) on Oct 08, 2003 at 19:17 UTC | |
by shenme (Priest) on Oct 08, 2003 at 19:30 UTC | |
by LTjake (Prior) on Oct 08, 2003 at 19:46 UTC | |
|
Re: delete session using CGI::Session
by jdtoronto (Prior) on Oct 08, 2003 at 16:49 UTC |