|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-08-09 13:41 UTC] derick@php.net
[2004-08-09 16:18 UTC] mail dot spam at gmx dot net
[2004-08-19 08:56 UTC] php-is-cool at gmx dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 16 05:00:01 2025 UTC |
Description: ------------ if i use gzencode() to compress the output being sent to the user's browser there get's no session-id added to links. use_only_cookies is set to off and use_trans_sid is set to On. Reproduce code: --------------- working: <?php session_start(); echo '<a href="dummy.php">Test</a>'; ?> _not_ working: <?php session_start(); header('Content-Encoding: gzip'); echo gzencode('<a href="dummy.php">Test</a>'); ?> Expected result: ---------------- i assumed to see both links with session-id added. Actual result: -------------- working: <a href="dummy.php?PHPSESSID=074c2a090a20e5bb3d59948a39da5e87">Test</a> _not_ working: <a href="dummy.php">Test</a>