|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-02-26 00:11 UTC] addinitz at hotmail dot com
version 4.2.3 works fine when I call the session_start function, but in both 4.3.0 and 4.3.1, session_start() causes an immediate crash. The OS is Gentoo Linux 1.4_rc2. Apache 2.0.44. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 18:00:01 2025 UTC |
I just experienced the exact same problem on PHP 4.3.8 and Apache 2.0.50/Suse 9.3. After reading mszumocki's comment above, I just changed the order of the extensions in my php.ini, so that session.so will be loaded last and now it works like a charm! My php.ini like it was before ("extension=session.so" inserted as first extension by SuseConfig I assume): [extension section] extension=session.so extension=curl.so extension=gd.so extension=mysql.so extension=zlib.so extension=bz2.so ; end of extension section And my changed extensions, now session.so will be loaded last: [extension section] extension=curl.so extension=gd.so extension=mysql.so extension=zlib.so extension=bz2.so extension=session.so ; end of extension section Hope it helps someone!