PHP via CLI successfully logs errors to /var/log/php_errors.log.
But apache + php does not log errors.
[bla@notebook ~]$ apachectl -v
Server version: Apache/2.2.17 (Unix)
Server built: May 19 2011 03:15:39
[bla@notebook ~]$ php -v
PHP 5.3.6 with Suhosin-Patch (cli) (built: Mar 23 2011 13:28:00)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
In php.ini I have:
display_errors = On
error_reporting = E_ALL | E_STRICT
log_errors = On
error_log = php_errors.log
In httpd.conf:
ErrorLog "/var/log/httpd/error_log"
Permissions:
[bla@notebook /]$ ls -la /var/log/httpd/
-rwxrwxr-x 1 root root 133351 21.11.2011 11:18 access_log*
-rwxrwxr-x 1 root http 1307 21.11.2011 11:18 error_log*
[bla@notebook /]$ ls -la /var/log/php_errors.log
-rwxrwxr-x 1 root http 521 14.11.2011 17:31 /var/log/php_errors.log*
As you can see the Apache daemon has permissions to write into log files.
Still no errors from Apache or PHP in /var/log/php_errors.log and /var/log/httpd/error_log.
UPDATE 1.
Changed this line in php.ini:
error_log = php_errors.log
to full path:
error_log = /var/log/php_errors.log
Permissions were ok. But if someone is also having problems with it, you can debug setting permissions to logfile 0777 or changing file owner.
Check which PHP script you are accessing, and how Apache is configured in order to access it.
In some configurations (e.g. Virtual hosts, specific directories...), the error_log file can be set to a different path/name than the default one.
I would then suggest to check your Apache config files.
There are usually two separate php.ini files for Apache and CLI - are you sure you're looking at the correct one?
Edit:
2 more options that I can think of:
http
user group to write to the logfile - there's probably some suphp-like behaviour and when your script is accessed through the web it is executed with/as the username that is set as it's owner (file owner of the script that is) - try changing it.httpd.conf
is not the only place where Apache config can sit,For example:
if you use secure connection
https://
your extra config will prevail and you would need to look for configuration in files like/opt/local/apache2/conf/extra/httpd-ssl.conf
you can find there something like:
And you will see no errors logged in normal log file, but all of them will go to ssl_error.log
In the past, I had no error logs in two cases:
php_error_log
file..htaccess
, for example wrong rewrite module settings. In this situation errors are logged to Apacheerror_log
file.This can also be caused by Apache's own LogLevel directive, which if set too high will override PHP's logging. However, it does not override PHP's ability to output errors on the page, ie display_error, and also does not affect CLI PHP. Worth looking into if you have that particular set of symptoms.
I had the same problem.
Setting
log_errors_max_len = 0
in php.ini worked for me.PHP manual: