Hi guys, I'm really not sure where I'm going with this one, it seems like I
must be doing something completely wrong, but I'm not really sure where to
even start looking.

Here's my logout action:

public function logoutAction() {
        Zend_Auth::getInstance()->clearIdentity();
        $this->_helper->redirector('/');
}

Pretty simple, right? The redirect certainly works, but for some reason, I'm
still logged in! I've even tried $_SESSION = ''; to brute force the session
to be deleted, but there i am, still logged in. Anyone got any ideas on this
one?

Reply via email to