Hello,
There is something weird, why the session name is part of the request
parameters ?
I guess this value should not be available this way. Because if a value is
sent to the server with the same name, a clash occurs between the session
name and the value name. It is something very hard to track it down. Mainly
the session storage will not be able to load the correct information for the
current user.
So maybe this is the correct behavior, if so the documentation should be
more precise [1]
A small summary of the generated factory file :
$this->factories['storage'] = new $class(array_merge(array(
'auto_shutdown' => false, 'session_id' =>
$this->getRequest()->getParameter('mysession'),
), sfConfig::get('sf_factory_storage_parameters', array (
'session_name' => 'mysession',
))));
[1]
http://www.symfony-project.org/book/1_2/06-Inside-the-Controller-Layer#chapter_06_sub_session_management
--
Thomas Rabaix
http://rabaix.net
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-devs?hl=en
-~----------~----~----~----~------~----~------~--~---