php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #8649 session.auto_start can't write to files in isapi mode
Submitted: 2001-01-11 00:34 UTC Modified: 2002-02-02 06:39 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: huntp at panix dot com Assigned:
Status: No Feedback Package: IIS related
PHP Version: 4.0.4 OS: NT4 (SP6a)
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: huntp at panix dot com
New email:
PHP Version: OS:

 

 [2001-01-11 00:34 UTC] huntp at panix dot com
On WinNT4(SP6a), the following script works in both cgi and isapi mode with the default php.ini, which has session auto_start turned off:

<?php
session_start();
session_register("cntr");
$cntr++;
echo "Counter is: $cntr";
?>

If I turn on session auto_start in php.ini with:

  session.auto_start = 1

all is well in cgi mode, but isapi mode generates the following error:

Counter is: 1
Warning: open(/tmp\sess_20b9e255f10a4bde02c3f9fe0d5d6779, O_RDWR) failed: m (2) in Unknown on line 0
Warning: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0

The /tmp directory exists, is world read/writeable and is working fine in all modes without session.auto_start and in cgi mode with auto_start.

Changing session.save_path to '\tmp' (from '/tmp') makes no difference.

PHP is 4.0.4, build date 12/20/2000

Thanks.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-01-12 06:55 UTC] lobbin@php.net
Can you this with 4.1.1?
 [2002-02-02 06:39 UTC] sander@php.net
No feedback was provided for this bug, so it is being suspended.
If you are able to provide the information that was requested,
please do so and change the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 02:01:28 2024 UTC