What steps are you taking to log out the user? If all you are doing is Zend_Auth::getInstance()->clearIdentity(), then that will not destroy the session. In fact, all of the session data will remain in the session except for the identity key that Zend_Auth uses.
Have you tried calling Zend_Session::destroy() to clear the session data? -- Hector On Wed, Apr 21, 2010 at 1:43 AM, whisher <[email protected]> wrote: > > Hi, > Sorry to disturb you. > I set up my first project with Zend Session Db > and after the logout action I just see the row in the db. > Shall I set up a garbage collector method ? > I'd like to have in the Db only the active session. > Bye. > -- > View this message in context: > http://n4.nabble.com/Zend-Session-Db-garbage-collector-tp2018595p2018595.html > Sent from the Zend Framework mailing list archive at Nabble.com. >
