Re: Saving data to %session with Apache::Session::File

2010-03-30 Thread Brian J. Miller
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

Saving data to %session with Apache::Session::File

2010-03-30 Thread Fabian Gut
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