Hi, I have problems with my sessions using Zend Framework 1.7.6.
The problem occurs when I try to store an array in a session, the session namespace also stores other user data.
I am currently receiving the following message on my stack
Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'Zend_Session :: start () -
...
Error # 2 session_start () [function.session-start]: Node no longer exists Array
Code where I think this is an error:
//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 appeared only after trying to add an array to the session namespace.
Any ideas that Node might trigger are no longer an Array message ?
Many thanks
php session zend-framework
Grant collins
source share