|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [2004-07-12 12:32 UTC] bart at mediawave dot nl
 Description: ------------ This bug is very similar to bug #26286. Only, in my Apache error log it says: Parent: child process exited with status 3221225725 -- Restarting. Parent: Created child process 2968 Child 2968: Child process is running Child 2968: Acquired the start mutex. Child 2968: Starting 250 worker threads. Windows Event log: Application popup: apache.exe - Application Error : The exception unknown software exception (0xc00000fd) occurred in the application at location 0x01a1ce13. The problem occurs at random with UCCASS v1.04. I'm using XAMPP on Win2k (Apache/2.0.50 (Win32) mod_ssl/2.0.50 OpenSSL/0.9.7d PHP/4.3.7 MySQL 4.0.20a-debug-log) It seems there's a lot of feedback at bug #26286. Maybe that status should be changed to Open? More info: http://www.phprojekt.com/modules.php?op=modload&name=forum&file=index&kat=2&id=30946&action=writetext& Reproduce code: --------------- Win2K + XAMPP + UCCASS v1.04 (I wish I could be more specific) Expected result: ---------------- A page Actual result: -------------- Server hangs with Application popup: apache.exe - Application Error : The exception unknown software exception (0xc00000fd) occurred in the application at location 0x01a1ce13. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 19:00:02 2025 UTC | 
If you have the PEAR Date package installed, this may be the problem: There is a command in a Pear function that tries to write information to the server. Some Windows installations and Unix servers with strict Safe Mode options enabled do not allow this. You can fix this yourself however. Open the file lib/pear/Date/TimeZone.php in a text editor. Go to line 247. You should be in a function named 'inDaylightTime()'. Add this line: return date("I"); at the very top of the function. It should now look like this: function inDaylightTime($date) { return date("I"); $env_tz = ""; if(getenv("TZ")) $env_tz = getenv("TZ"); putenv("TZ=".$this->id); $ltime = localtime($date->getTime(), true); putenv("TZ=".$env_tz); return $ltime['tm_isdst']; } This should stop the error. Perhaps in the future, the Pear team will supply a work around. See if that fixes it and let everyone know.