background image

;       Instead you must use zlib.output_handler.
;output_handler =

; Transparent output compression using the zlib library

; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)

; Note: Resulting chunk size may vary due to nature of compression. PHP
;       outputs chunks that are few hundreds bytes each as a result of

;       compression. If you prefer a larger chunk size for better
;       performance, enable output_buffering in addition.

; Note: You need to use zlib.output_handler instead of the standard
;       output_handler, or otherwise the output will be corrupted.

zlib.output_compression = Off
;zlib.output_compression_level = -1

; You cannot specify additional output handlers if zlib.output_compression

; is activated here. This setting does the same as output_handler but in
; a different order.

;zlib.output_handler =

; Implicit flush tells PHP to tell the output layer to flush itself
; automatically after every output block.  This is equivalent to calling the

; PHP function flush() after each and every call to print() or echo() and each
; and every HTML block.  Turning this option on has serious performance

; implications and is generally recommended for debugging purposes only.
implicit_flush = Off

; The unserialize callback function will be called (with the undefined class'

; name as parameter), if the unserializer finds an undefined class
; which should be instantiated.

; A warning appears if the specified function is not defined, or if the
; function doesn't include/implement the missing class.

; So only set this entry, if you really want to implement such a
; callback-function.

unserialize_callback_func=

; When floats & doubles are serialized store serialize_precision significant
; digits after the floating point. The default value ensures that when floats

; are decoded with unserialize, the data will remain the same.
serialize_precision = 100

; Whether to enable the ability to force arguments to be passed by reference

; at function call time.  This method is deprecated and is likely to be
; unsupported in future versions of PHP/Zend.  The encouraged method of

; specifying which arguments should be passed by reference is in the function
; declaration.  You're encouraged to try and turn this option Off and make

; sure your scripts work properly with it in order to ensure they will work
; with future versions of the language (you will receive a warning each time

; you use this feature, and the argument will be passed by value instead of by
; reference).

allow_call_time_pass_reference = On

;
; Safe Mode

;
safe_mode = Off

; By default, Safe Mode does a UID compare check when