Zend主义会议问题

时间:2012-06-24 10:20:39

标签: zend-framework session doctrine

尝试在Zend中使用Doctrine设置会话保存处理程序时遇到问题。

我要做的是让this提案工作。我按照以下说明进行操作: -

  • 类Zend_Session_SaveHandler_Doctrine在适当的目录中输入
  • 表设置准备
  • Doctrine Model ready
  • bootstrap ready

我仍然收到此错误:

 Fatal error: Uncaught exception 'Doctrine_Exception' with message 'Couldn't find class Session' in....

我不确定问题出在哪里或我做错了什么。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

如果您使用Doctrine ORM(我仍然使用1.x版本),您可以通过替换第289行来修复此错误:

$session = new Session();

用这个:

$session = new $this->_tableName;