php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38847 session.use_trans_sid did not work on Docomo mobile phone
Submitted: 2006-09-15 14:37 UTC Modified: 2006-09-15 14:43 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: sengtha at hotmail dot com Assigned:
Status: Not a bug Package: Session related
PHP Version: 4.4.4 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: sengtha at hotmail dot com
New email:
PHP Version: OS:

 

 [2006-09-15 14:37 UTC] 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>


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-09-15 14:41 UTC] tony2001@php.net
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:43 UTC] tony2001@php.net
And btw this: ini_set("session.use_trans_sid",1); won't work, you need to set it in php.ini.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Jul 23 17:00:02 2025 UTC