public function logoutAction()
    {
        if(!$this->auth->hasIdentity()){
            $this->_helper->redirector('index', 'index', 'default');
        }
        $this->auth->clearIdentity();
       
Zend_Session::namespaceUnset(md5(App_Controller_Main::SESSION_ADMIN_NAME));
        Zend_Session::destroy();
        $this->_helper->redirector('login', 'index', 'admin');
    }

Thans it works fine.

Bye.
-- 
View this message in context: 
http://n4.nabble.com/Zend-Session-Db-garbage-collector-tp2018595p2019735.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to