atistler has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl use strict; use Apache::Session::File; use Data::Dumper; my $session_id = undef; my %session; my $opts = { Directory => '/tmp', LockDirectory => '/tmp', Transaction + => 0 }; tie %session, 'Apache::Session::File', $session_id, $opts; $session{name} = 'me'; $session{hello} = 'bye';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: apache session does not put anything in file
by Anonymous Monk on Jan 08, 2007 at 10:10 UTC | |
|
Re: apache session does not put anything in file
by Anonymous Monk on Jan 08, 2007 at 10:14 UTC |