ID: 38847 Updated by: [EMAIL PROTECTED] Reported By: sengtha at hotmail dot com Status: Bogus Bug Type: Session related Operating System: Linux PHP Version: 4.4.4 New Comment:
And btw this: ini_set("session.use_trans_sid",1); won't work, you need to set it in php.ini. Previous Comments: ------------------------------------------------------------------------ [2006-09-15 14:41:02] [EMAIL PROTECTED] Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. PHP doesn't depend on the browser in any way. ------------------------------------------------------------------------ [2006-09-15 14:37:48] sengtha at hotmail dot com Description: ------------ I had problem with session.use_trans_sid of PHP 4.4.4 on Docomo mobile phone. The session did not work at all. I use Docomo simulator (http://www.nttdocomo.co.jp/english/p_s/i/flash/tool2.html) to test it. The session_id value is always changed when I refresh or move between page. But it work find with PHP Version 4.3.11. And the code also works fine on PC. Reproduce code: --------------- I create two php file to test. test.php ------------------- <?php ini_set("session.use_trans_sid",1); session_start(); ?> <html> <body> <?php $_SESSION["test"]="Hello"; print_r($_SESSION); ?> <br/></br> <a href="gettest.php">Next Page</a> </body> </html> ----------------- gettet.php ----------------- <?php ini_set("session.use_trans_sid",1); session_start(); ?> <html> <body> <?php print_r($_SESSION); echo "<br/>SESSION ID:".session_id(); ?> </body> </html> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=38847&edit=1