Fabian Gut wrote:
Hi
I'm using Apache::Session::File for session management. I have a hash in
$session{'config'} that saves some config values.
I have a script that should change these config values:
foreach ( sort keys %newconfig ) {
$session{'config'}{$_} = $newconfig{$_};
}
this work
Hi
I'm using Apache::Session::File for session management. I have a hash in
$session{'config'} that saves some config values.
I have a script that should change these config values:
foreach ( sort keys %newconfig ) {
$session{'config'}{$_} = $newconfig{$_};
}
this works perfectly for the