|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-12-06 19:42 UTC] sniper@php.net
[2001-01-30 04:18 UTC] sniper@php.net
[2001-01-31 07:09 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
We've been trying to get PHP installed into our web server configuration, and been having a devil of a time. We're able to get everything compiled: ./configure --prefix=/opt/php/4.0.3pl1 --with-apxs=/opt/httpd/1.3.14/sbin/apxs --with-mysql=/usr/local --without-gd --with-config-file-path=/usr/local/httpd/etc/php.ini but as soon as the module is enabled in the srm.conf, apache starts to dump core. Almost any content - not just PHP - starts to cause a core dump. Even if .php is never called, we seem to have the problem. A truss isn't entirely useful: close(12) = 0 Incurred fault #6, FLTBOUNDS %pc = 0xEF15DAD4 siginfo: SIGSEGV SEGV_MAPERR addr=0x00000068 Received signal #11, SIGSEGV [caught] siginfo: SIGSEGV SEGV_MAPERR addr=0x00000068 chdir("/export/httpd") = 0 sigaction(SIGSEGV, 0xEFFFF160, 0xEFFFF1E0) = 0 getpid() = 9894 [9887] kill(9894, SIGSEGV) = 0 setcontext(0xEFFFF360) Received signal #11, SIGSEGV [default] siginfo: SIGSEGV pid=9894 uid=72 *** process killed *** It seems to happen after a lstat64() or a close() on a file. Apache refused to dump core, even though permissions seem to be set fine, etc. We've also spend a couple of hours with gdb trying to step through it, but we're having no luck getting symbols to show up (it's a bit out of our abilities, I guess, since it's running as a DSO). We have a baseline httpd server that we only put DSOs into, so I can't really rebuild it statically without much gnashing of teeth; at this point, I don't know if that would fix the problem. I'm not sure where to turn next. Web and bug searchs show up a few similar-sounding problems related FDs, but our httpd has plenty of room for more file descriptors. Any suggestions as to what could be causing this bug, or how to track it down, would be most helpful.