|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-09-17 10:17 UTC] markus dot welsch at suk dot de
[2003-09-17 18:34 UTC] iliaa@php.net
[2003-09-18 02:11 UTC] markus dot welsch at suk dot de
[2004-02-18 01:57 UTC] unknown at simplemachines dot org
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 20:00:01 2025 UTC |
Description: ------------ When using sessions and having session.save_path to an empty value the session data won't be saved - even if session.use_only_cookies = 1 When session.save_path is specified it works fine. Reproduce code: --------------- <?php session_name("test"); session_start(); print "Session-ID: ".session_id()."<br>"; print_r($_SESSION); $_SESSION['test'] = "example"; ?> Expected result: ---------------- Session-ID: c0b505ac52883be84dd9681fc6e84c50 Array ( [test] => example ) Actual result: -------------- Session-ID: c0b505ac52883be84dd9681fc6e84c50 Array ( )