Re: [fw-general] re[fw-general] gistry question

2009-06-23 Thread Jurian Sluiman
At another page, you don't set the session namespace object into the registry. The registry has to be setup every time there is a page request. If you don't set the session namespace into the registry, then you can't access it. So create a plugin, resource or whatever where you do the same thing

[fw-general] re[fw-general] gistry question

2009-06-23 Thread KimG
hi, i'm making an application in which the user have to logon in order to get access to the real 'goodies'. in my authentication action in my index controller i'm doing this when the user is verified: $sesuser = new Zend_Session_Namespace('user'); Zend_registry::set('user', $user);