I\'m working on my first user login in Zend, but I\'m a little confused with Zend_Auth. All the articles I read about it use it directly in the controller. But to me, it makes more sense, to work wi开
I\'ve created a simple login system and it works so far but I want the sessions to be remembered even afte开发者_如何学JAVAr the browser is closed. Does Zend have something for this? I can\'t seem to
after reading the Zend documentation and some posts here I could not figure out how to get my user role out of a user table.
so basically when we use zend auth we can call function $auth->getIdentity() to get the ide开发者_JAVA百科ntity of the currently logged in user....the thing is...it would return the value that was set
I authenticate a user with Zend_Auth (LDAP Adapter). now I have tryed doing a logout script: public function logoutAction()
after serching up and down the internets, finding no proper answer, I am asking you: I want to implement a getAuthAdapter(array $form)
Okay, This is completely a weird situation. When a user logs in, I store some stuff using the following code:
i have been following some online screencasts and tutorials about zend_auth. i have a basic zend application created by the zf tool.
In my entry controller I set: This works: $authadapter = new Test_Auth_Adapter_DbTable($db); $auth = Zend_Auth::getInstance();
I am working on an existing project that has two areas that can be logged into. An admin section and the front end.