Note: issues are now on GitHub; see the Overview for more details.
It throws a "Unknown option" exception
Option was added to php 5.2.0 (I think)
Posted by Lars Kneschke (lkneschke) on 2008-09-08T02:40:59.000+0000
That's the patch needed to fix this problem. Maybe this helps to get this problem fixed. This cookie parameter is really important.
--- /home/lkneschke/workspace/Zend Framework Trunk/Session.php (revision 11279) +++ /home/lkneschke/workspace/Zend Framework Trunk/Session.php (working copy) @@ -96,6 +96,7 @@ 'cookie_path' => null, 'cookie_domain' => null, 'cookie_secure' => null, + 'cookie_httponly' => null, 'use_cookies' => null, 'use_only_cookies' => 'on', 'referer_check' => null,
Posted by Thomas Weidner (thomas) on 2008-11-07T12:19:29.000+0000
Missing default option added with r12385
Posted by Wil Sinclair (wil) on 2008-11-13T14:09:59.000+0000
Changing issues in preparation for the 1.7.0 release.
Comments
Posted by Lars Kneschke (lkneschke) on 2008-09-08T02:40:59.000+0000
That's the patch needed to fix this problem. Maybe this helps to get this problem fixed. This cookie parameter is really important.
Index: /home/lkneschke/workspace/Zend Framework Trunk/Session.php
--- /home/lkneschke/workspace/Zend Framework Trunk/Session.php (revision 11279) +++ /home/lkneschke/workspace/Zend Framework Trunk/Session.php (working copy) @@ -96,6 +96,7 @@ 'cookie_path' => null, 'cookie_domain' => null, 'cookie_secure' => null, + 'cookie_httponly' => null, 'use_cookies' => null, 'use_only_cookies' => 'on', 'referer_check' => null,
Posted by Thomas Weidner (thomas) on 2008-11-07T12:19:29.000+0000
Missing default option added with r12385
Posted by Wil Sinclair (wil) on 2008-11-13T14:09:59.000+0000
Changing issues in preparation for the 1.7.0 release.