|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-12-18 10:05 UTC] requinix@php.net
-Status: Open
+Status: Feedback
[2015-12-18 10:05 UTC] requinix@php.net
[2015-12-18 10:33 UTC] sohorev at gmail dot com
-Status: Feedback
+Status: Open
[2015-12-18 10:33 UTC] sohorev at gmail dot com
[2015-12-25 08:13 UTC] sohorev at gmail dot com
-Status: Open
+Status: Closed
[2015-12-25 08:13 UTC] sohorev at gmail dot com
[2015-12-25 08:15 UTC] sohorev at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 21:00:01 2025 UTC |
Description: ------------ I am use a zend framework version 1 and this framework have a class Zend_Session_Namespace with code: <code> if (!isset($_SESSION['__ZF'])) { return; // no further processing needed } </code> And this code throw exception: Zend_Session_Exception with message: The session has already been started. The session id must be set first. I am using two browsers: in firefox - all ok in opera I have this bug On php 5.6 this code work normally Test script: --------------- if (!isset($_SESSION['__ZF'])) { return; // no further processing needed }