Why would trying to use the Zend_Session_SaveHandler_DbTable cause the
following file not found error:
Warning: Zend_Db_Table_Abstract::require_once(Zend/Db/Table/Select.php)
[function.Zend-Db-Table-Abstract-require-once]: failed to open stream: No
such file or directory in C:\www\lib\Zend\Db\Table\Abstract.php on line 773
Which is the following function in Zend_Db_Table_Abstract:
public function select()
{
require_once "Zend/Db/Table/Select.php";
return new Zend_Db_Table_Select($this);
}
Yet require it manually outside the function and it's fine, even the
autoloader picks it up. So why is this failing, it's surely not being called
before the include path is set (which is set above this).
I can't work out the difference, if there is one?! Comment the require in
Zend_Db_Table_Abstract and the whole thing works perfectly.
Thanks
-----
Simon
http://www.ajb007.co.uk/
--
View this message in context:
http://www.nabble.com/Zend_Session_SaveHandler_DbTable-tp20047383p20047383.html
Sent from the Zend Framework mailing list archive at Nabble.com.