|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-12-12 01:46 UTC] sniper@php.net
[2004-12-13 12:35 UTC] stephan dot skusa at lippe-net dot de
[2005-02-01 19:27 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 24 00:00:01 2025 UTC |
Description: ------------ ini_set("session.use_trans_sid", 0) seems to be ignored on first call. Reproduce code: --------------- <?php ini_set("session.use_trans_sid", 0); ini_set("session.use_cookies", 1); session_name("s"); session_start(); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Session-Testing</title> </head> <body> <a href="index.php">Test</a> </body> </html> Expected result: ---------------- The session-id should not be added after "index.php". Actual result: -------------- On the first call of the script it is added ... on the second call it is not ... !