I want set up own error_log without some error types over htaccess.
Like this:
error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING & ~E_DEPRECATED
error_reporting = E_ALL(32767) & ~E_NOTICE(8) & ~E_WARNING(2) & ~E_DEPRECATED(8192)
So it should be php_value error_reporting 24565
(32767-8-2-8192=24565)
But I still get PHP Warning. What I'm doing wrong?
Here is a full code:
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
php_flag log_errors on
php_value error_log /path/log/error_log.log
php_value error_reporting 24565
var_dump(ini_get('error_reporting'));above the line where the warning is displayed? Does it equal 24565?