You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 16, 2018. It is now read-only.
Uncaught exception 'Zend_Session_Exception' with message 'The session has already been started. The session id must be set first.' in library/Zend/Session.php:667
This happens if invalid session id was received, for example: Cookie: PHPSESSID=(null) and session has already been started in bootstrap.
Because if self::_checkId(self::getId()) returns false, it tried to generate a valid, temporary replacement for session id using self::setId(md5(self::getId()));
this caught the exception.
It can be reproduced using curl: curl -X POST -H "Cookie: PHPSESSID=(null)" http://zf1project.local/
Be sure that session has been started in bootstrap.
The text was updated successfully, but these errors were encountered:
Uncaught exception 'Zend_Session_Exception' with message 'The session has already been started. The session id must be set first.' in library/Zend/Session.php:667
This happens if invalid session id was received, for example:
Cookie: PHPSESSID=(null)
and session has already been started in bootstrap.Because if
self::_checkId(self::getId())
returnsfalse
, it tried to generate a valid, temporary replacement for session id usingself::setId(md5(self::getId()));
this caught the exception.
It can be reproduced using curl:
curl -X POST -H "Cookie: PHPSESSID=(null)" http://zf1project.local/
Be sure that session has been started in bootstrap.
The text was updated successfully, but these errors were encountered: