Thread cgi::session problem
(4 answers)
Opened by tina at 2005-03-24 15:17
Der Fehler steckte in der Verzeichnissangabe.
Für win: my $session = $session = new CGI::Session("driver:File", undef, {Directory=>'C:\tmp\sessions'}); Für *nix/linux: $session = new CGI::Session(undef, undef, {Directory=>'../tmp/sessions'}); Die Pfade müssen existieren! g tina |