“session has already been started…” exception in Zend Framework application

后端 未结 12 938
囚心锁ツ
囚心锁ツ 2020-12-31 08:18

I get this error when trying to load a Zend Framework application:

Fatal error: Uncaught exception \'Zend_Session_Exception\' with message \'sessi

12条回答
  •  粉色の甜心
    2020-12-31 08:58

    had the same error. it occured only if two instances of the same session were used at the same time (e.g. two browser instances were loading at the same time). This is a result of php not being able to handle two open sessions with the same id at the same time.

提交回复
热议问题