Re: [fw-general] zend_session question

2007-04-03 Thread Gavin Vess
Hi Tomek, I proposed adding an option to disable the check for save_path previously. I attached the test patch to the issue below. If you set save_path to anything writable the exception will not occur. Setting a save_path has no effect, if you are not using the default files-based save ha

Re: [fw-general] zend_session question

2007-04-03 Thread Raphael Stolt
Have you checked the session.save_path in your php.ini. I ran in the same problem when updating from ZF 0.8 to 0.9.1, because in my php.ini it wasn't set and so also not writeable. Setting the path would also switch to the use of file-based session storage and retrieval. Hope this is a starting p

[fw-general] zend_session question

2007-04-03 Thread Tomek Nowak
i wrote a class require_once 'Zend/Session/SaveHandler/Interface.php'; class Session2 implements Zend_Session_SaveHandler_Interface { public $maxLifeTime; public $dbConnect; public function __construct($dbConnect,$maxLifeTime = 1500) { $thi