Php 启用APC扩展时引发Zend_会话_异常?

Php 启用APC扩展时引发Zend_会话_异常?,php,zend-framework,apc,Php,Zend Framework,Apc,有没有人知道为什么启用PHP APC扩展(我们使用的是PHP 5.3.26)会导致以下错误: Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'Zend_Session::start() - /library/Zend/Loader.php(Line:146): Error #8 include_once() [<a href='function.include-once'>function.

有没有人知道为什么启用PHP APC扩展(我们使用的是PHP 5.3.26)会导致以下错误:

Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'Zend_Session::start() - /library/Zend/Loader.php(Line:146):
Error #8 include_once() [<a href='function.include-once'>function.include-once</a>]:
  Inserting [/library/Zend/Form/Element/Textarea.php] Array' in /library/Zend/Session.php:497
Stack trace:
  #0 /library/Zend/Session/Namespace.php(143): Zend_Session::start(true)
  #1 /library/Zend/Auth/Storage/Session.php(87): Zend_Session_Namespace->__construct('Zend_Auth')
  #2 /library/Zend/Auth.php(91): Zend_Auth_Storage_Session->__construct()
  #3 /library/Zend/Auth.php(141): Zend_Auth->getStorage()
  #4 /library/Zend/Controller/Plugin in /library/Zend/Session.php on line 497
致命错误:未捕获异常“Zend_Session_exception”,消息为“Zend_Session::start()-/library/Zend/Loader.php(第146行):
错误#8 include_once()[]:
在/library/Zend/Session.php:497中插入[/library/Zend/Form/Element/Textarea.php]数组
堆栈跟踪:
#0/library/Zend/Session/Namespace.php(143):Zend_Session::start(true)
#1/library/Zend/Auth/Storage/Session.php(87):Zend_Session_名称空间->_构造('Zend_Auth'))
#2/library/Zend/Auth.php(91):Zend\u Auth\u Storage\u Session->\u construct()
#3/library/Zend/Auth.php(141):Zend_Auth->getStorage()
#第497行的4/library/Zend/Controller/Plugin in/library/Zend/Session.php

似乎在会话_start()中出现了某种错误,但我不明白APC会如何影响这一点。

您在会话中存储对象吗?是的,我在存储对象。问题可能与自动加载您在会话中存储的类有关。在尝试启动会话之前,请确保正在设置ZF自动加载器。自动加载器已设置。该代码在我的本地WAMP设置上有效,但在我的VPS上无效。您的本地设置上有APC吗?相同的设置?相同的PHP版本?在本地设置的会话中是否也有对象数据?