in reply to
Re^3: always logged in with CGI::Session
in thread always logged in with CGI::Session
I am not sure yet, haven't done to much testing. But it seems to work. I removed the name and the session header calls.
sub init_session {
# application object
my $self = shift;
my $name = shift;
# change name from CGISESSID to shorter sid
#CGI::Session->name($name);
# init session object using CGI::Application::Plugin::Session
my $session = $self->session;
# send session to header
#$session->header();
}