我在zf2应用程序上有一个简单的身份验证代码
$this->auth = new AuthenticationService(new Session($this->namespace));
,使用的外部模块是
每次,我都会尝试进行身份验证,例如
$this->auth->authenticate($adapter)
我得到了#34;会话验证失败"错误信息。
当我禁用ZendDeveloperTools模块时,我没有收到此错误但无法修复。我还检查了Zend\Session\Container Session validation failed exception — Object(Closure) ZF2,但我的代码中没有任何地方
$ sharedEvents-> attach(' ',' ',..)
根据Crisp
的建议答案 0 :(得分:1)
ZendDeveloperTools/Listener/EventLoggingListenerAggregate.php Line: 64
$events->attach($this->identifiers, '*', array($this,'onCollectEvent'),
Profiler::PRIORITY_EVENT_COLLECTOR);
我取消注释,然后我没有收到错误。
希望它有用。