尝试在Zend中使用Doctrine设置会话保存处理程序时遇到问题。
我要做的是让this提案工作。我按照以下说明进行操作: -
我仍然收到此错误:
Fatal error: Uncaught exception 'Doctrine_Exception' with message 'Couldn't find class Session' in....
我不确定问题出在哪里或我做错了什么。有人可以帮忙吗?
答案 0 :(得分:0)
如果您使用Doctrine ORM(我仍然使用1.x版本),您可以通过替换第289行来修复此错误:
$session = new Session();
用这个:
$session = new $this->_tableName;