[Cgi-session-user] Session not saving data files
Brought to you by:
sherzodr
From: K.G. W. <kg...@se...> - 2005-09-07 20:01:42
|
I was using CGI::Session 3.95 last week and the UNIX(Sun Solaris) folks rolled out a new server and installed CGI::Session 4.02. Also the Perl version was 5.8.2 and now it's 5.6.1. Now when I use my CGI app the session data isn't saving in the dir I told it to. I tried removing the dir and the app rebuilds the dir but no data files. Anyone know why I'm not saving the data? Here is my Perl: $sid =3D $query->cookie("MySesId") || undef; $session =3D new CGI::Session(undef, $sid, {Directory=3D>"$server_path/cgi-bin/session/"}) or die CGI::Session->errstr; -=20 KG=20 |