ID:               22633
 User updated by:  ermannov at netscape dot net
 Reported By:      ermannov at netscape dot net
 Status:           Bogus
 Bug Type:         Session related
 Operating System: Windows NT 4
 PHP Version:      4CVS-2003-03-11 (stable)
 New Comment:

Italian version of ther manual doesn't say it. Is this a documentation
problem?


Previous Comments:
------------------------------------------------------------------------

[2003-03-11 20:52:03] [EMAIL PROTECTED]

MM save_handler is not available on windows, as is said on
the manual too:

http://www.php.net/manual/fi/ref.session.php

------------------------------------------------------------------------

[2003-03-11 05:11:19] ermannov at netscape dot net

I made two scripts, first one has got a link to second one.
If session.save_handler=mm, on Page 2 I can see $_SESSION is null. The
scripts work when session.save_handler=files.
It also happens with Windows 98 SE.

pag1.php
<?php
session_start();
$_SESSION['variable']=1;
?>
<html>
<head>
<title>
Page 1
</title>
</head>
<body>
<?php
var_dump($_SESSION);
?>
<a href="pag2.php">Page 2</a>
</body>
</html>

pag2.php
<?php
session_start();
?>
<html>
<head>
<title>
Page 2
</title>
</head>
<body>
<?php
var_dump($_SESSION);
?>
</body>
</html>

Modules:
extension=php_cpdf.dll
extension=php_dbx.dll
extension=php_exif.dll
extension=php_java.dll
extension=php_mhash.dll
extension=php_mssql.dll
extension=php_openssl.dll
extension=php_pdf.dll
extension=php_mcrypt.dll

Session configuration:
session.save_handler      = mm
session.save_path         = "c:/temp"
session.use_cookies       = 1
session.name              = PHPSESSID  
session.auto_start        = 0       
session.cookie_lifetime   = 0       
session.cookie_path       = /       
session.cookie_domain     =         
session.serialize_handler = php     
session.gc_probability    = 5       
session.gc_maxlifetime    = 600    
session.referer_check     =         
session.entropy_length    = 0       
session.entropy_file      =         
session.cache_limiter     = nocache 
session.cache_expire      = 180     
session.use_trans_sid     = 1
url_rewriter.tags =
"a=href,area=href,frame=src,input=src,form=fakeentry"

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=22633&edit=1

Reply via email to