in reply to cgi::sessions can not create global session handle
Try again using a global for the $session object handle, but use the flush() method at the end of all your processing. You may solve the problem right there, or generate an error message that will lead you to a definite problem.# Force CGI::Session flush now (rather than wait until object # destruction time when any errors/messages may be lost to us. $session->flush() or die "Unable to update session storage\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: cgi::sessions can not create global session handle
by webg (Initiate) on Feb 12, 2005 at 16:27 UTC |