summaryrefslogtreecommitdiff
path: root/php.ini-dist
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-07-15 19:09:37 +0000
committerMarcus Boerger <helly@php.net>2004-07-15 19:09:37 +0000
commitf2377c4d1f1b85729568ea273a5026c3d6c3ba16 (patch)
tree6e4a63fe463b18d6000346067c322b8440bb459c /php.ini-dist
parentf20849d12ea122b17901fd3b1b6888c1c40cec7d (diff)
downloadphp-git-f2377c4d1f1b85729568ea273a5026c3d6c3ba16.tar.gz
Synch comments
Diffstat (limited to 'php.ini-dist')
-rw-r--r--php.ini-dist19
1 files changed, 17 insertions, 2 deletions
diff --git a/php.ini-dist b/php.ini-dist
index 9154cbf082..51387cb4ac 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -12,7 +12,7 @@
;;;;;;;;;;;;;;;;;;;
-; About this file ;
+; About php.ini ;
;;;;;;;;;;;;;;;;;;;
; This file controls many aspects of PHP's behavior. In order for PHP to
; read it, it must be named 'php.ini'. PHP looks for it in the current
@@ -55,6 +55,10 @@
; dynamically loaded extension (either a PHP extension or a Zend extension),
; you may only use these constants *after* the line that loads the extension.
;
+;
+;;;;;;;;;;;;;;;;;;;
+; About this file ;
+;;;;;;;;;;;;;;;;;;;
; All the values in the php.ini-dist file correspond to the builtin
; defaults (that is, if no php.ini is used, or if you delete these lines,
; the builtin defaults will be identical).
@@ -106,6 +110,8 @@ output_buffering = Off
; is doing.
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
+; Note: output_handler must be empty if this is set 'On' !!!!
+; Instead you must use zlib.output_handler.
;output_handler =
; Transparent output compression using the zlib library
@@ -156,6 +162,7 @@ serialize_precision = 100
; reference).
allow_call_time_pass_reference = On
+;
; Safe Mode
;
safe_mode = Off
@@ -234,6 +241,7 @@ max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -263,6 +271,10 @@ memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
;
; Examples:
;
+; - Show all errors, except for notices and coding standards warnings
+;
+;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
+;
; - Show all errors, except for notices
;
;error_reporting = E_ALL & ~E_NOTICE
@@ -554,6 +566,7 @@ default_socket_timeout = 60
;extension=php_iisfunc.dll
;extension=php_imap.dll
;extension=php_interbase.dll
+;extension=php_java.dll
;extension=php_ldap.dll
;extension=php_mbstring.dll
;extension=php_mcrypt.dll
@@ -720,7 +733,8 @@ msql.max_links = -1
; Allow or prevent persistent links.
pgsql.allow_persistent = On
-; Detect broken persistent links always with pg_pconnect(). Need a little overhead.
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
pgsql.auto_reset_persistent = Off
; Maximum number of persistent links. -1 means no limit.
@@ -730,6 +744,7 @@ pgsql.max_persistent = -1
pgsql.max_links = -1
; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
pgsql.ignore_notice = 0
; Log PostgreSQL backends Noitce message or not.