Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:103856 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 10733 invoked from network); 28 Jan 2019 04:18:03 -0000 Received: from unknown (HELO librelamp.com) (45.79.96.192) by pb1.pair.com with SMTP; 28 Jan 2019 04:18:03 -0000 To: internals@lists.php.net DKIM-Filter: OpenDKIM Filter v2.11.0 librelamp.com 83FC7A90 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=librelamp.com; s=libre2019; t=1548637023; bh=Pf+JO0bkr+t1FEvemdYMYpqQPNyIiUFKcSXb8mXHjgA=; h=To:From:Subject:Date:From; b=BXd/LoArV+T0J/7VOtTi5fr4YIi66a6ze/raYdoEdBEilHozklCejDBH51vDyKUq7 UDcaZUeW1056CEqvjXIxDonugsTaPfa7m5AdUMybjSOgIjWE3DzYqp3bnJfffbUU77 Cxxo5IKCsTjjwksHpvZmvmOM8NbsT02IuyzvvQbgcgGybgPqgdw6H4F0fForxuGaJf ZIFbCBkWwa7aXT/hGUsfec/qXWQAn8mCpAAqXd9/FVoUPpb95nBpxLvz3E3O+GG+jf Xfrsbi0vG1uuVd9tmocnuleRS7ZptPxSMhrRQuLVYJVhpsP0u/oWB2iJtmb6GPhesY dUJOnCwNZ6VXw== Message-ID: <244d3fd0-35ef-5639-fe80-4f1809ce9a28@librelamp.com> Date: Sun, 27 Jan 2019 16:57:02 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: 7.3.1 corruption issue From: alice@librelamp.com (Alice Wonder) I can't file a bug report because I do not know what went run. I only know system php 7.3.1 Site suddenly stopped working. Apache error log says: Mon Jan 28 00:45:17.896727 2019] [php7:error] [pid 4117:tid 140287279617792] [client 73.15.182.232:53028] PHP Fatal error: require_once(): Failed opening required 'base.inc.php' (include_path='.:/usr/share/pear:/usr/share/php') in /srv/[redacted]/www/controller.php on line 2 That include path is interesting, it lists /usr/share/pear:/usr/share/php I set the include path in Apache config: Options FollowSymlinks AllowOverride All Require all granted php_value include_path "/srv/[redacted]/phpinclude:/usr/share/pear" AddType application/x-httpd-php-source .phps I never set include path in my php code. It looks like the value became corrupted and so it went to a default. Restarted Apache and everything worked. How would I find out what corrupted that setting? That sounds dangerous. Never happened in php 7.1.x which I ran from start, or in 7.3.0 which I also ran from the start. Memory corruption bug?