in reply to Re: CGI::Session->delete()
in thread CGI::Session->delete()
my $session = new CGI::Session(undef, $query,{Directory=>"/tmp/data"}) +; $cookie = $query->cookie(CGISESSID => $session->id ); print $query->header(-cookie=>$cookie); print $query->start_html( "Blah Blah" ); $session->delete( ); $session->flush();
As you can see, I did try calling flush, but it doesn't help. I read your snippet (before posting no less 8-), but I thought that code was for maintenance of sessions that were abandoned.
The CGI::Session::File.pm code does an unlink on the file, but I haven't tried tracing the excetuion. Thanks again.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: CGI::Session->delete()
by LTjake (Prior) on Oct 22, 2003 at 19:39 UTC | |
by Anonymous Monk on Oct 24, 2003 at 13:51 UTC |