View Single Post
  #3 (permalink)  
Old 04-25-2008, 04:22 PM
cc96ai cc96ai is offline
Junior Member
 
Join Date: Dec 2007
Posts: 4
Default

Yes. once the session expire,
it will expire all the user.
does the following code correct to use?

PHP Code:
$authNamespace = new Zend_Session_Namespace('Zend_Auth');
$authNamespace->user $username;
$authNamespace->setExpirationSeconds(360); 
or I have to create new namespace for each user?
PHP Code:
$authNamespace = new Zend_Session_Namespace($username); 
Reply With Quote