Re: [fw-general] Sharing the session among different Controllers

2011-01-30 Thread Ralph Schindler
There is no need to both start the session with Zend_Session and also call $session = new Zend_Session_Namespace();. What I suggest is this following: First decide on a sensible name that all your controllers can share, some kind of name that suits the purpose of the data that is being

[fw-general] Sharing the session among different Controllers

2011-01-29 Thread AmirBehzad Eslami
Hi, I'm looking for a ZF-way to share the session among different Controllers. Before ZF, the famous global $_SESSION was available everywhere, and still is. But I'm trying to access the session data from ZF's API. In My bootstrap, I have: class Bootstrap extends