|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2020-03-18 14:42 UTC] antony dot landsman at verticacrm dot com
Description: ------------ I recently built a copy of 7.3.15. When I try to access my website (running on NGINX) I get a 502 error. In looking at the logs I see that the child process is terminating with a SIGABRT (Signal 6). In order to gather more information, I created a debug build. To my surprise, with the debug build the site works perfectly. Sort of a catch 22, because as IU understand it, I cannot get a stack trace without a debug build. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 09:00:01 2025 UTC |
This only occurs when xdebug is enabled. As an eexample the following script:- <?php ob_start(); $result = eval("?>".$string."<"."?p"."hp return 1;"); $new_string = ob_get_clean(); s What I expect is an undefined variable string error message When I disable xdebug that is exactly what I get in the log:- 2020/03/23 11:26:46 [error] 30332#30332: *3115 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined variable: string in /home/brgb/public_html/crm/pinf.php on line 3" while reading response header from upstream, client: 82.80.188.85, server: crm.brgbrokers.com, request: "GET /pinf.php HTTP/1.1", upstream: "fastcgi://unix:/var/run/php7-brgb-fpm.sock:", host: "crm.brgbrokers.com" if however I enable xdebug in my php.ini, In the server error log I get a connection reset by peer error message, and the the php error log I get child 7584 exited on signal 6 (SIGABRT) after 960.531820 seconds from start while I originally reported this on centos 8 and php 7.3.15 I have also experienced the same with centos 7 and php 7.3.16