php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #4772 php 4.0.0 crashed with session_start()
Submitted: 2000-06-02 12:58 UTC Modified: 2000-06-09 15:53 UTC
From: ojo at post dot sk Assigned:
Status: Closed Package: Session related
PHP Version: 4.0.0 Release OS: Win 2000 Advanced Server
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
11 + 22 = ?
Subscribe to this entry?

 
 [2000-06-02 12:58 UTC] ojo at post dot sk
I've used PHP Version 4.0b4pl1 and it worked OK (except few bugs). Now I'm trying to use final release (win32 binaries downloaded from www.php.net) on Windows 2000 Advanced Server machine, but there is a problem. I set session.auto_start = 1 in php.ini file and page crashed (the same problem is with session.auto_start=0 and session_start(); placed in xxx.php file). When I set session.auto_start=0 everything's OK (but I need session variables). Here is php.ini:

Session]
session.save_handler      = files   ; handler used to store/retrieve data
session.save_path         = c:\app\php4\tmp    ; argument passed to save_handler
                                    ; in the case of files, this is the
                                    ; path where data files are stored
session.use_cookies       = 1       ; whether to use cookies
session.name              = PHPSESSID  
                                    ; name of the session
                                    ; is used as cookie name
session.auto_start        = 1       ; initialize session on request startup
session.cookie_lifetime   = 0       ; lifetime in seconds of cookie
                                    ; or if 0, until browser is restarted
session.cookie_path       = /       ; the path the cookie is valid for
session.cookie_domain     =         ; the domain the cookie is valid for
session.serialize_handler = php     ; handler used to serialize data
                                    ; php is the standard serializer of PHP
session.gc_probability    = 1       ; procentual probability that the 
                                    ; 'garbage collection' process is started
                                    ; on every session initialization
session.gc_maxlifetime    = 1440    ; after this number of seconds, stored
                                    ; data will be seen as 'garbage' and
                                    ; cleaned up by the gc process
session.referer_check     =         ; check HTTP Referer to invalidate 
                                    ; externally stored URLs containing ids
session.entropy_length    = 0       ; how many bytes to read from the file
session.entropy_file      =         ; specified here to create the session id
; session.entropy_length    = 16
; session.entropy_file      = /dev/urandom
session.cache_limiter     = nocache ; set to {nocache,private,public} to
                                    ; determine HTTP caching aspects
session.cache_expire      = 180     ; document expires after n minutes

Can anyone tell me what's wrong ?

Thanx.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2000-06-09 15:53 UTC] andi at cvs dot php dot net
This problem should be fixed in the latest CVS.
Please try va.php.net/~andi/php-4.0.1dev-Win32.zip
Andi
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 26 07:01:32 2024 UTC