summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist9
1 files changed, 9 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist
index d3c904a3f1..8ef2ede726 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -257,6 +257,15 @@ display_startup_errors = Off
; error displaying on production web sites.
log_errors = Off
+; Do not log repeated messages. Repeated errors must occur in same file on same
+; line until ignore_repeated_source is set true.
+ignore_repeated_errors = Off
+
+; Ignore source of message when ignoring repeated messages. When this setting
+; is On you will not log errors with repeated messages from different files or
+; sourcelines.
+ignore_repeated_source = Off
+
; Store the last error/warning message in $php_errormsg (boolean).
track_errors = Off