Hi I am having issues with my my sessions using Zend Framework 1.7.6.
The problem exists when I try and store an array to the session, the session namespace also stores other userdata.
I am currently getting the following message in my stacktrace
Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'Zend_Session::start() - ... Error #2 session_start() [function.session-start]: Node no longer exists Array
The code where I think this is erroring is:
//now we add the user object to the session
$usersession = new Zend_Session_Namespace('userdata');
$usersession->user = $user;
//we now get the users menu map
$menuMap = $this->processMenuMap($menuMapPath);
$usersession->menus = $menuMap;
This error has only started to appear since trying to add an array to the session namespace.
Any ideas what could be causing the Node no longer exists Array message?
Many thanks