in reply to CGI::Session newbee
The second is your call should look something like:
/tmp isn't portable. :-)use CGI; use CGI::Session; use File::Spec; my $cgi = CGI->new; my $session = CGI::Session->new( undef, $cgi, { Directory => File::Spe +c->tmpdir } ) or die "Cannot create \$session!\n";
|
|---|