Thank U, it solved my problem :drunk:
kim ozzycan wrote: > > This is an open issue. > > See http://framework.zend.com/issues/browse/ZF-6651 > http://framework.zend.com/issues/browse/ZF-6651 for details. > > My workaround looks like this: > > Remove or disable the resources.session.* directives in your > application.ini. > > Try using this in your Bootstrap.php File: > > class Bootstrap extends Zend_Application_Bootstrap_Bootstrap > { > protected function _initSession(array $options = array()) > { > $this->bootstrap('db'); > $config = array('name' => 'session', > 'primary' => 'id', > 'modifiedColumn' => 'modified', > 'dataColumn' => 'data', > 'lifetimeColumn' => 'lifetime' ); > Zend_Session::setSaveHandler(new > Zend_Session_SaveHandler_DbTable($config)); > Zend_Session::start(); > } > } > > -- View this message in context: http://www.nabble.com/bootstrap-and-sessions-tp24330275p24338613.html Sent from the Zend Framework mailing list archive at Nabble.com.
