Edit report at https://bugs.php.net/bug.php?id=29107&edit=1
ID: 29107 Updated by: paj...@php.net Reported by: bart at mediawave dot nl Summary: Parent: child process exited with status 3221225725 Status: Closed Type: Bug Package: Apache2 related Operating System: Win2k PHP Version: 4.3.7 -Assigned To: +Assigned To: pajoye Block user comment: N Private report: N New Comment: This bug could be caused by dozen of poblems. Please do not comment on this one but create a new one with: - a backtrace (see https://bugs.php.net/bugs-generating-backtrace-win32.php) - a reproduce script Thanks for your understanding. Previous Comments: ------------------------------------------------------------------------ [2012-10-22 21:54:26] nickzipse at jabico dot com I'm getting the exact if not very similar error: [Mon Oct 22 14:49:54 2012] [notice] Parent: child process exited with status 3221225725 -- Restarting. [Mon Oct 22 14:49:54 2012] [notice] Digest: generating secret for digest authentication ... [Mon Oct 22 14:49:54 2012] [notice] Digest: done [Mon Oct 22 14:49:55 2012] [notice] Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1 configured -- resuming normal operations [Mon Oct 22 14:49:55 2012] [notice] Server built: Sep 10 2011 11:34:11 [Mon Oct 22 14:49:55 2012] [notice] Parent: Created child process 8448 [Mon Oct 22 14:49:56 2012] [notice] Digest: generating secret for digest authentication ... [Mon Oct 22 14:49:56 2012] [notice] Digest: done [Mon Oct 22 14:49:56 2012] [notice] Child 8448: Child process is running [Mon Oct 22 14:49:56 2012] [notice] Child 8448: Acquired the start mutex. [Mon Oct 22 14:49:56 2012] [notice] Child 8448: Starting 150 worker threads. [Mon Oct 22 14:49:56 2012] [notice] Child 8448: Starting thread to listen on port 443. [Mon Oct 22 14:49:56 2012] [notice] Child 8448: Starting thread to listen on port 443. [Mon Oct 22 14:49:56 2012] [notice] Child 8448: Starting thread to listen on port 80. This happens sporadically without any consistency of the error. The page I try to view will randomly break and say the webserver is down. I tried adding the return date() in the pear library but had no luck. Any help will be much appreciated! ------------------------------------------------------------------------ [2005-03-15 22:47:27] bart at mediawave dot nl Argh... I can't believe that it would come as far as spamming the PHP bugs database! I'm re-opening this bug asuming somebody will want to remove the spam? If not, let me know. I'll leave them closed next time. ------------------------------------------------------------------------ [2004-11-22 14:07:19] jor...@php.net Thank you for this bug report. To properly diagnose the problem, we need a backtrace to see what is happening behind the scenes. To find out how to generate a backtrace, please read http://bugs.php.net/bugs-generating-backtrace.php Once you have generated a backtrace, please submit it to this bug report and change the status back to "Open". Thank you for helping us make PHP better. ------------------------------------------------------------------------ [2004-08-13 05:20:02] loye dot young at iycc dot net 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. ------------------------------------------------------------------------ [2004-07-23 15:55:42] bart at mediawave dot nl I don't think that's my problem. I'm having the problem at my testing server where, most of the time, I'm the only client. So ,if persistent connections work like they should I guess, in my case, there's only one conection there. ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at https://bugs.php.net/bug.php?id=29107 -- Edit this bug report at https://bugs.php.net/bug.php?id=29107&edit=1