diff options
Diffstat (limited to 'php.ini-recommended')
| -rw-r--r-- | php.ini-recommended | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index 7cc66e6097..8a60fd10dc 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -292,6 +292,18 @@ error_reporting = E_ALL ; instead (see below). Keeping display_errors enabled on a production web site ; may reveal security information to end users, such as file paths on your Web ; server, your database schema or other information. +; +; possible values for display_errors: +; +; Off - Do not display any errors +; stderr - Display errors to STDERR (affects only CGI/CLI binaries!) +; On or stdout - Display errors to STDOUT (default) +; +; To output errors to STDERR with CGI/CLI: +;display_errors = "stderr" +; +; Default +; display_errors = Off ; Even when display_errors is on, errors that occur during PHP's startup |
