PHP: Modify php.ini to reach the blocking program error message
provide a little information to you:
display_errors = on
PHP default is open error Information shown, we changed it to:
Display_errors = Off
when the error display is turned off, the PHP function execution error message will no longer be displayed to User , which prevents attackers from knowing the physical location of the script and some other useful information, at least to the attacker's black-box detection, to some extent. These error messages may be useful to us and can be written to the specified file, so modify the following:
Log_errors = Off
instead:
L og_errors = on
and specify the file, locate the following line:
; error_log = filename
Remove the previous; note to change the filename to a specified file, such as/usr/local/apache/logs/php_error.log
error_log =/usr/local/apache/logs/php_error.log
all errors will be written in the Php_error.log file.