diff options
Diffstat (limited to 'php.ini-recommended')
-rw-r--r-- | php.ini-recommended | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index 827f4f2fa9..b772531ef9 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -95,8 +95,7 @@ ; - magic_quotes_gpc = Off [Performance] ; Input data is no longer escaped with slashes so that it can be sent into ; SQL databases without further manipulation. Instead, you should use the -; database vendor specific escape string function on each input element you -; wish to send to a database. +; function addslashes() on each input element you wish to send to a database. ; - variables_order = "GPCS" [Performance] ; The environment variables are not hashed into the $_ENV. To access ; environment variables, you can use getenv() instead. @@ -399,7 +398,7 @@ log_errors = On log_errors_max_len = 1024 ; Do not log repeated messages. Repeated errors must occur in same file on same -; line unless ignore_repeated_source is set true. +; line until ignore_repeated_source is set true. ignore_repeated_errors = Off ; Ignore source of message when ignoring repeated messages. When this setting @@ -417,11 +416,6 @@ report_memleaks = On ; Store the last error/warning message in $php_errormsg (boolean). track_errors = Off -; Turn off normal error reporting and emit XML-RPC error XML -;xmlrpc_errors = 0 -; An XML-RPC faultCode -;xmlrpc_error_number = 0 - ; Disable the inclusion of HTML tags in error messages. ; Note: Never use this feature for production boxes. ;html_errors = Off @@ -758,6 +752,10 @@ default_socket_timeout = 60 [sqlite3] ;sqlite3.extension_dir = +[xmlrpc] +;xmlrpc_error_number = 0 +;xmlrpc_errors = 0 + [Pcre] ;PCRE library backtracking limit. ;pcre.backtrack_limit=100000 |