Why are some PHP errors are not written in the PHP log? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T07:06:46Zhttp://stackoverflow.com/feeds/question/182675http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/182675/why-are-some-php-errors-are-not-written-in-the-php-log0Why are some PHP errors are not written in the PHP log?Cédric Girard2008-10-08T13:12:46Z2008-10-10T20:06:44Z
<p>Hello, </p>
<p>On a server I have to take care of, errors from a vhost do not go to the standard PHP error log.</p>
<p>In the php.ini we have </p>
<pre><code>log = /var/log/file
</code></pre>
<p>and phpinfo() does not show any difference between the vhost and the whole server.</p>
<p>But the callback function set up by <strong>set_error_handler()</strong> catches errors which are not in the php log.</p>
<p>Could you help me to find a way to explore?</p>
<p>Regards,
Cédric</p>
<p>update : error_reporting is set to E_ALL once and never modified</p>
http://stackoverflow.com/questions/182675/why-are-some-php-errors-are-not-written-in-the-php-log/182705#1827051Answer by Rimas Kudelis for Why are some PHP errors are not written in the PHP log?Rimas Kudelis2008-10-08T13:19:02Z2008-10-08T13:19:02Z<p>Perhaps the errors that aren't logged <a href="http://php.net/error-reporting" rel="nofollow">aren't supposed to be logged</a>? The <a href="http://php.net/set_error_handler" rel="nofollow">error reporting settings have no effect when set_error_handler is used</a>, hance you see more errors than in the logfile.</p>
http://stackoverflow.com/questions/182675/why-are-some-php-errors-are-not-written-in-the-php-log/192875#1928750Answer by clutch for Why are some PHP errors are not written in the PHP log?clutch2008-10-10T20:06:44Z2008-10-10T20:06:44Z<p>I would take a look at error_log, log_error and error_reporting directive in php.ini and also take a look in the httpd.conf because directives can also be added there using "php_admin_value" and others.</p>