From:             sengtha at hotmail dot com
Operating system: Linux
PHP version:      4.4.4
PHP Bug Type:     Session related
Bug description:  session.use_trans_sid did not work on Docomo mobile phone

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 bug report at http://bugs.php.net/?id=38847&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=38847&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=38847&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=38847&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=38847&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=38847&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=38847&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=38847&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=38847&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=38847&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=38847&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=38847&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=38847&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=38847&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=38847&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=38847&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=38847&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=38847&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=38847&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=38847&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=38847&r=mysqlcfg

Reply via email to