From 47a1ab36b009f25d246705ce72927fbe0afe063e Mon Sep 17 00:00:00 2001 From: ekinhbayar Date: Sat, 6 May 2017 22:25:04 +0300 Subject: [PATCH] Update php.ini-* for deprecated track_errors directive --- php.ini-development | 2 +- php.ini-production | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/php.ini-development b/php.ini-development index bb70f10783..178e4cfba9 100644 --- a/php.ini-development +++ b/php.ini-development @@ -523,7 +523,7 @@ report_memleaks = On ; Development Value: Off ; Production Value: Off ; http://php.net/track-errors -track_errors = Off +;track_errors = Off ; Turn off normal error reporting and emit XML-RPC error XML ; http://php.net/xmlrpc-errors diff --git a/php.ini-production b/php.ini-production index c8242dc063..82413187d9 100644 --- a/php.ini-production +++ b/php.ini-production @@ -525,11 +525,12 @@ report_memleaks = On ; Store the last error/warning message in $php_errormsg (boolean). Setting this value ; to On can assist in debugging and is appropriate for development servers. It should ; however be disabled on production servers. +; This directive is DEPRECATED. ; Default Value: Off -; Development Value: On +; Development Value: Off ; Production Value: Off ; http://php.net/track-errors -track_errors = Off +;track_errors = Off ; Turn off normal error reporting and emit XML-RPC error XML ; http://php.net/xmlrpc-errors -- 2.50.1