ID: 28828 User updated by: demjanich at yandex dot ru -Reported By: demjan at elkor dot lv +Reported By: demjanich at yandex dot ru -Status: No Feedback +Status: Closed Bug Type: Session related Operating System: Linux PHP Version: 5.0.0RC3 New Comment:
Now all works fine. Thanks! Previous Comments: ------------------------------------------------------------------------ [2005-02-23 01:00:10] php-bugs at lists dot php dot net No feedback was provided for this bug for over a week, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". ------------------------------------------------------------------------ [2005-02-15 01:40:24] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php5-STABLE-latest.tar.gz For Windows: http://snaps.php.net/win32/php5.0-win32-latest.zip ------------------------------------------------------------------------ [2004-06-18 14:07:06] demjanich at yandex dot ru Description: ------------ Hello! There is some problem in adding SESSID when "session.use_trans_sid" is enabled. See code bellow. Reproduce code: --------------- <?php ini_set('session.use_trans_sid','1'); session_start(); ?> <html> <body> <?php for ($i = 0; $i < 4055; $i ++) echo '0'; echo "\r\n<br />"; ?> <a href="<? echo 'index.php'; ?>" title="test">test</a> </body> </html> Expected result: ---------------- <html> <body> 000000 [... a lot of nulls] <br /><a href="index.php?PHPSESSID=8an47kimf5fd8i9pg7t5km1i64" title="test">test</a> </body> </html> Actual result: -------------- <html> <body> 000000[... a lot of nulls] <br /><a href="index.php" title=?PHPSESSID=8an47kimf5fd8i9pg7t5km1i64"test">test</a> </body> </html> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=28828&edit=1