Blame SOURCES/php.ini

4c9102
[PHP]
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; About php.ini   ;
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; PHP's initialization file, generally called php.ini, is responsible for
4c9102
; configuring many of the aspects of PHP's behavior.
4c9102
4c9102
; PHP attempts to find and load this configuration from a number of locations.
4c9102
; The following is a summary of its search order:
4c9102
; 1. SAPI module specific location.
4c9102
; 2. The PHPRC environment variable. (As of PHP 5.2.0)
4c9102
; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
4c9102
; 4. Current working directory (except CLI)
4c9102
; 5. The web server's directory (for SAPI modules), or directory of PHP
4c9102
; (otherwise in Windows)
4c9102
; 6. The directory from the --with-config-file-path compile time option, or the
4c9102
; Windows directory (C:\windows or C:\winnt)
4c9102
; See the PHP docs for more specific information.
4c9102
; http://php.net/configuration.file
4c9102
4c9102
; The syntax of the file is extremely simple.  Whitespace and lines
4c9102
; beginning with a semicolon are silently ignored (as you probably guessed).
4c9102
; Section headers (e.g. [Foo]) are also silently ignored, even though
4c9102
; they might mean something in the future.
4c9102
4c9102
; Directives following the section heading [PATH=/www/mysite] only
4c9102
; apply to PHP files in the /www/mysite directory.  Directives
4c9102
; following the section heading [HOST=www.example.com] only apply to
4c9102
; PHP files served from www.example.com.  Directives set in these
4c9102
; special sections cannot be overridden by user-defined INI files or
4c9102
; at runtime. Currently, [PATH=] and [HOST=] sections only work under
4c9102
; CGI/FastCGI.
4c9102
; http://php.net/ini.sections
4c9102
4c9102
; Directives are specified using the following syntax:
4c9102
; directive = value
4c9102
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
4c9102
; Directives are variables used to configure PHP or PHP extensions.
4c9102
; There is no name validation.  If PHP can't find an expected
4c9102
; directive because it is not set or is mistyped, a default value will be used.
4c9102
4c9102
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
4c9102
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
4c9102
; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
4c9102
; previously set variable or directive (e.g. ${foo})
4c9102
4c9102
; Expressions in the INI file are limited to bitwise operators and parentheses:
4c9102
; |  bitwise OR
4c9102
; ^  bitwise XOR
4c9102
; &  bitwise AND
4c9102
; ~  bitwise NOT
4c9102
; !  boolean NOT
4c9102
4c9102
; Boolean flags can be turned on using the values 1, On, True or Yes.
4c9102
; They can be turned off using the values 0, Off, False or No.
4c9102
4c9102
; An empty string can be denoted by simply not writing anything after the equal
4c9102
; sign, or by using the None keyword:
4c9102
4c9102
;  foo =         ; sets foo to an empty string
4c9102
;  foo = None    ; sets foo to an empty string
4c9102
;  foo = "None"  ; sets foo to the string 'None'
4c9102
4c9102
; If you use constants in your value, and these constants belong to a
4c9102
; dynamically loaded extension (either a PHP extension or a Zend extension),
4c9102
; you may only use these constants *after* the line that loads the extension.
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; About this file ;
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; PHP comes packaged with two INI files. One that is recommended to be used
4c9102
; in production environments and one that is recommended to be used in
4c9102
; development environments.
4c9102
4c9102
; php.ini-production contains settings which hold security, performance and
4c9102
; best practices at its core. But please be aware, these settings may break
4c9102
; compatibility with older or less security conscience applications. We
4c9102
; recommending using the production ini in production and testing environments.
4c9102
4c9102
; php.ini-development is very similar to its production variant, except it is
4c9102
; much more verbose when it comes to errors. We recommend using the
4c9102
; development version only in development environments, as errors shown to
4c9102
; application users can inadvertently leak otherwise secure information.
4c9102
4c9102
; This is php.ini-production INI file.
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; Quick Reference ;
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; The following are all the settings which are different in either the production
4c9102
; or development versions of the INIs with respect to PHP's default behavior.
4c9102
; Please see the actual settings later in the document for more details as to why
4c9102
; we recommend these changes in PHP's behavior.
4c9102
4c9102
; display_errors
4c9102
;   Default Value: On
4c9102
;   Development Value: On
4c9102
;   Production Value: Off
4c9102
4c9102
; display_startup_errors
4c9102
;   Default Value: Off
4c9102
;   Development Value: On
4c9102
;   Production Value: Off
4c9102
4c9102
; error_reporting
4c9102
;   Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
4c9102
;   Development Value: E_ALL
4c9102
;   Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
4c9102
4c9102
; html_errors
4c9102
;   Default Value: On
4c9102
;   Development Value: On
4c9102
;   Production value: On
4c9102
4c9102
; log_errors
4c9102
;   Default Value: Off
4c9102
;   Development Value: On
4c9102
;   Production Value: On
4c9102
4c9102
; max_input_time
4c9102
;   Default Value: -1 (Unlimited)
4c9102
;   Development Value: 60 (60 seconds)
4c9102
;   Production Value: 60 (60 seconds)
4c9102
4c9102
; output_buffering
4c9102
;   Default Value: Off
4c9102
;   Development Value: 4096
4c9102
;   Production Value: 4096
4c9102
4c9102
; register_argc_argv
4c9102
;   Default Value: On
4c9102
;   Development Value: Off
4c9102
;   Production Value: Off
4c9102
4c9102
; request_order
4c9102
;   Default Value: None
4c9102
;   Development Value: "GP"
4c9102
;   Production Value: "GP"
4c9102
4c9102
; session.gc_divisor
4c9102
;   Default Value: 100
4c9102
;   Development Value: 1000
4c9102
;   Production Value: 1000
4c9102
4c9102
; session.hash_bits_per_character
4c9102
;   Default Value: 4
4c9102
;   Development Value: 5
4c9102
;   Production Value: 5
4c9102
4c9102
; short_open_tag
4c9102
;   Default Value: On
4c9102
;   Development Value: Off
4c9102
;   Production Value: Off
4c9102
4c9102
; track_errors
4c9102
;   Default Value: Off
4c9102
;   Development Value: On
4c9102
;   Production Value: Off
4c9102
4c9102
; url_rewriter.tags
4c9102
;   Default Value: "a=href,area=href,frame=src,form=,fieldset="
4c9102
;   Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
4c9102
;   Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
4c9102
4c9102
; variables_order
4c9102
;   Default Value: "EGPCS"
4c9102
;   Development Value: "GPCS"
4c9102
;   Production Value: "GPCS"
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;;
4c9102
; php.ini Options  ;
4c9102
;;;;;;;;;;;;;;;;;;;;
4c9102
; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
4c9102
;user_ini.filename = ".user.ini"
4c9102
4c9102
; To disable this feature set this option to empty value
4c9102
;user_ini.filename =
4c9102
4c9102
; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
4c9102
;user_ini.cache_ttl = 300
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;;
4c9102
; Language Options ;
4c9102
;;;;;;;;;;;;;;;;;;;;
4c9102
4c9102
; Enable the PHP scripting language engine under Apache.
4c9102
; http://php.net/engine
4c9102
engine = On
4c9102
4c9102
; This directive determines whether or not PHP will recognize code between
4c9102
;  tags as PHP source which should be processed as such. It is
4c9102
; generally recommended that  should be used and that this feature
4c9102
; should be disabled, as enabling it may result in issues when generating XML
4c9102
; documents, however this remains supported for backward compatibility reasons.
4c9102
; Note that this directive does not control the 
4c9102
; used regardless of this directive.
4c9102
; Default Value: On
4c9102
; Development Value: Off
4c9102
; Production Value: Off
4c9102
; http://php.net/short-open-tag
4c9102
short_open_tag = Off
4c9102
4c9102
; Allow ASP-style <% %> tags.
4c9102
; http://php.net/asp-tags
4c9102
asp_tags = Off
4c9102
4c9102
; The number of significant digits displayed in floating point numbers.
4c9102
; http://php.net/precision
4c9102
precision = 14
4c9102
4c9102
; Output buffering is a mechanism for controlling how much output data
4c9102
; (excluding headers and cookies) PHP should keep internally before pushing that
4c9102
; data to the client. If your application's output exceeds this setting, PHP
4c9102
; will send that data in chunks of roughly the size you specify.
4c9102
; Turning on this setting and managing its maximum buffer size can yield some
4c9102
; interesting side-effects depending on your application and web server.
4c9102
; You may be able to send headers and cookies after you've already sent output
4c9102
; through print or echo. You also may see performance benefits if your server is
4c9102
; emitting less packets due to buffered output versus PHP streaming the output
4c9102
; as it gets it. On production servers, 4096 bytes is a good setting for performance
4c9102
; reasons.
4c9102
; Note: Output buffering can also be controlled via Output Buffering Control
4c9102
;   functions.
4c9102
; Possible Values:
4c9102
;   On = Enabled and buffer is unlimited. (Use with caution)
4c9102
;   Off = Disabled
4c9102
;   Integer = Enables the buffer and sets its maximum size in bytes.
4c9102
; Note: This directive is hardcoded to Off for the CLI SAPI
4c9102
; Default Value: Off
4c9102
; Development Value: 4096
4c9102
; Production Value: 4096
4c9102
; http://php.net/output-buffering
4c9102
output_buffering = 4096
4c9102
4c9102
; You can redirect all of the output of your scripts to a function.  For
4c9102
; example, if you set output_handler to "mb_output_handler", character
4c9102
; encoding will be transparently converted to the specified encoding.
4c9102
; Setting any output handler automatically turns on output buffering.
4c9102
; Note: People who wrote portable scripts should not depend on this ini
4c9102
;   directive. Instead, explicitly set the output handler using ob_start().
4c9102
;   Using this ini directive may cause problems unless you know what script
4c9102
;   is doing.
4c9102
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
4c9102
;   and you cannot use both "ob_gzhandler" and "zlib.output_compression".
4c9102
; Note: output_handler must be empty if this is set 'On' !!!!
4c9102
;   Instead you must use zlib.output_handler.
4c9102
; http://php.net/output-handler
4c9102
;output_handler =
4c9102
4c9102
; Transparent output compression using the zlib library
4c9102
; Valid values for this option are 'off', 'on', or a specific buffer size
4c9102
; to be used for compression (default is 4KB)
4c9102
; Note: Resulting chunk size may vary due to nature of compression. PHP
4c9102
;   outputs chunks that are few hundreds bytes each as a result of
4c9102
;   compression. If you prefer a larger chunk size for better
4c9102
;   performance, enable output_buffering in addition.
4c9102
; Note: You need to use zlib.output_handler instead of the standard
4c9102
;   output_handler, or otherwise the output will be corrupted.
4c9102
; http://php.net/zlib.output-compression
4c9102
zlib.output_compression = Off
4c9102
4c9102
; http://php.net/zlib.output-compression-level
4c9102
;zlib.output_compression_level = -1
4c9102
4c9102
; You cannot specify additional output handlers if zlib.output_compression
4c9102
; is activated here. This setting does the same as output_handler but in
4c9102
; a different order.
4c9102
; http://php.net/zlib.output-handler
4c9102
;zlib.output_handler =
4c9102
4c9102
; Implicit flush tells PHP to tell the output layer to flush itself
4c9102
; automatically after every output block.  This is equivalent to calling the
4c9102
; PHP function flush() after each and every call to print() or echo() and each
4c9102
; and every HTML block.  Turning this option on has serious performance
4c9102
; implications and is generally recommended for debugging purposes only.
4c9102
; http://php.net/implicit-flush
4c9102
; Note: This directive is hardcoded to On for the CLI SAPI
4c9102
implicit_flush = Off
4c9102
4c9102
; The unserialize callback function will be called (with the undefined class'
4c9102
; name as parameter), if the unserializer finds an undefined class
4c9102
; which should be instantiated. A warning appears if the specified function is
4c9102
; not defined, or if the function doesn't include/implement the missing class.
4c9102
; So only set this entry, if you really want to implement such a
4c9102
; callback-function.
4c9102
unserialize_callback_func =
4c9102
4c9102
; When floats & doubles are serialized store serialize_precision significant
4c9102
; digits after the floating point. The default value ensures that when floats
4c9102
; are decoded with unserialize, the data will remain the same.
4c9102
serialize_precision = 17
4c9102
4c9102
; open_basedir, if set, limits all file operations to the defined directory
4c9102
; and below.  This directive makes most sense if used in a per-directory
4c9102
; or per-virtualhost web server configuration file. This directive is
4c9102
; *NOT* affected by whether Safe Mode is turned On or Off.
4c9102
; http://php.net/open-basedir
4c9102
;open_basedir =
4c9102
4c9102
; This directive allows you to disable certain functions for security reasons.
4c9102
; It receives a comma-delimited list of function names. This directive is
4c9102
; *NOT* affected by whether Safe Mode is turned On or Off.
4c9102
; http://php.net/disable-functions
4c9102
disable_functions =
4c9102
4c9102
; This directive allows you to disable certain classes for security reasons.
4c9102
; It receives a comma-delimited list of class names. This directive is
4c9102
; *NOT* affected by whether Safe Mode is turned On or Off.
4c9102
; http://php.net/disable-classes
4c9102
disable_classes =
4c9102
4c9102
; Colors for Syntax Highlighting mode.  Anything that's acceptable in
4c9102
;  would work.
4c9102
; http://php.net/syntax-highlighting
4c9102
;highlight.string  = #DD0000
4c9102
;highlight.comment = #FF9900
4c9102
;highlight.keyword = #007700
4c9102
;highlight.default = #0000BB
4c9102
;highlight.html    = #000000
4c9102
4c9102
; If enabled, the request will be allowed to complete even if the user aborts
4c9102
; the request. Consider enabling it if executing long requests, which may end up
4c9102
; being interrupted by the user or a browser timing out. PHP's default behavior
4c9102
; is to disable this feature.
4c9102
; http://php.net/ignore-user-abort
4c9102
;ignore_user_abort = On
4c9102
4c9102
; Determines the size of the realpath cache to be used by PHP. This value should
4c9102
; be increased on systems where PHP opens many files to reflect the quantity of
4c9102
; the file operations performed.
4c9102
; http://php.net/realpath-cache-size
4c9102
;realpath_cache_size = 16k
4c9102
4c9102
; Duration of time, in seconds for which to cache realpath information for a given
4c9102
; file or directory. For systems with rarely changing files, consider increasing this
4c9102
; value.
4c9102
; http://php.net/realpath-cache-ttl
4c9102
;realpath_cache_ttl = 120
4c9102
4c9102
; Enables or disables the circular reference collector.
4c9102
; http://php.net/zend.enable-gc
4c9102
zend.enable_gc = On
4c9102
4c9102
; If enabled, scripts may be written in encodings that are incompatible with
4c9102
; the scanner.  CP936, Big5, CP949 and Shift_JIS are the examples of such
4c9102
; encodings.  To use this feature, mbstring extension must be enabled.
4c9102
; Default: Off
4c9102
;zend.multibyte = Off
4c9102
4c9102
; Allows to set the default encoding for the scripts.  This value will be used
4c9102
; unless "declare(encoding=...)" directive appears at the top of the script.
4c9102
; Only affects if zend.multibyte is set.
4c9102
; Default: ""
4c9102
;zend.script_encoding =
4c9102
4c9102
;;;;;;;;;;;;;;;;;
4c9102
; Miscellaneous ;
4c9102
;;;;;;;;;;;;;;;;;
4c9102
4c9102
; Decides whether PHP may expose the fact that it is installed on the server
4c9102
; (e.g. by adding its signature to the Web server header).  It is no security
4c9102
; threat in any way, but it makes it possible to determine whether you use PHP
4c9102
; on your server or not.
4c9102
; http://php.net/expose-php
4c9102
expose_php = On
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; Resource Limits ;
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
4c9102
; Maximum execution time of each script, in seconds
4c9102
; http://php.net/max-execution-time
4c9102
; Note: This directive is hardcoded to 0 for the CLI SAPI
4c9102
max_execution_time = 30
4c9102
4c9102
; Maximum amount of time each script may spend parsing request data. It's a good
4c9102
; idea to limit this time on productions servers in order to eliminate unexpectedly
4c9102
; long running scripts.
4c9102
; Note: This directive is hardcoded to -1 for the CLI SAPI
4c9102
; Default Value: -1 (Unlimited)
4c9102
; Development Value: 60 (60 seconds)
4c9102
; Production Value: 60 (60 seconds)
4c9102
; http://php.net/max-input-time
4c9102
max_input_time = 60
4c9102
4c9102
; Maximum input variable nesting level
4c9102
; http://php.net/max-input-nesting-level
4c9102
;max_input_nesting_level = 64
4c9102
4c9102
; How many GET/POST/COOKIE input variables may be accepted
4c9102
; max_input_vars = 1000
4c9102
4c9102
; Maximum amount of memory a script may consume (128MB)
4c9102
; http://php.net/memory-limit
4c9102
memory_limit = 128M
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4c9102
; Error handling and logging ;
4c9102
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4c9102
4c9102
; This directive informs PHP of which errors, warnings and notices you would like
4c9102
; it to take action for. The recommended way of setting values for this
4c9102
; directive is through the use of the error level constants and bitwise
4c9102
; operators. The error level constants are below here for convenience as well as
4c9102
; some common settings and their meanings.
4c9102
; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
4c9102
; those related to E_NOTICE and E_STRICT, which together cover best practices and
4c9102
; recommended coding standards in PHP. For performance reasons, this is the
4c9102
; recommend error reporting setting. Your production server shouldn't be wasting
4c9102
; resources complaining about best practices and coding standards. That's what
4c9102
; development servers and development settings are for.
4c9102
; Note: The php.ini-development file has this setting as E_ALL. This
4c9102
; means it pretty much reports everything which is exactly what you want during
4c9102
; development and early testing.
4c9102
;
4c9102
; Error Level Constants:
4c9102
; E_ALL             - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
4c9102
; E_ERROR           - fatal run-time errors
4c9102
; E_RECOVERABLE_ERROR  - almost fatal run-time errors
4c9102
; E_WARNING         - run-time warnings (non-fatal errors)
4c9102
; E_PARSE           - compile-time parse errors
4c9102
; E_NOTICE          - run-time notices (these are warnings which often result
4c9102
;                     from a bug in your code, but it's possible that it was
4c9102
;                     intentional (e.g., using an uninitialized variable and
4c9102
;                     relying on the fact it is automatically initialized to an
4c9102
;                     empty string)
4c9102
; E_STRICT          - run-time notices, enable to have PHP suggest changes
4c9102
;                     to your code which will ensure the best interoperability
4c9102
;                     and forward compatibility of your code
4c9102
; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
4c9102
; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
4c9102
;                     initial startup
4c9102
; E_COMPILE_ERROR   - fatal compile-time errors
4c9102
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
4c9102
; E_USER_ERROR      - user-generated error message
4c9102
; E_USER_WARNING    - user-generated warning message
4c9102
; E_USER_NOTICE     - user-generated notice message
4c9102
; E_DEPRECATED      - warn about code that will not work in future versions
4c9102
;                     of PHP
4c9102
; E_USER_DEPRECATED - user-generated deprecation warnings
4c9102
;
4c9102
; Common Values:
4c9102
;   E_ALL (Show all errors, warnings and notices including coding standards.)
4c9102
;   E_ALL & ~E_NOTICE  (Show all errors, except for notices)
4c9102
;   E_ALL & ~E_NOTICE & ~E_STRICT  (Show all errors, except for notices and coding standards warnings.)
4c9102
;   E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR  (Show only errors)
4c9102
; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
4c9102
; Development Value: E_ALL
4c9102
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
4c9102
; http://php.net/error-reporting
4c9102
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
4c9102
4c9102
; This directive controls whether or not and where PHP will output errors,
4c9102
; notices and warnings too. Error output is very useful during development, but
4c9102
; it could be very dangerous in production environments. Depending on the code
4c9102
; which is triggering the error, sensitive information could potentially leak
4c9102
; out of your application such as database usernames and passwords or worse.
4c9102
; For production environments, we recommend logging errors rather than
4c9102
; sending them to STDOUT.
4c9102
; Possible Values:
4c9102
;   Off = Do not display any errors
4c9102
;   stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
4c9102
;   On or stdout = Display errors to STDOUT
4c9102
; Default Value: On
4c9102
; Development Value: On
4c9102
; Production Value: Off
4c9102
; http://php.net/display-errors
4c9102
display_errors = Off
4c9102
4c9102
; The display of errors which occur during PHP's startup sequence are handled
4c9102
; separately from display_errors. PHP's default behavior is to suppress those
4c9102
; errors from clients. Turning the display of startup errors on can be useful in
4c9102
; debugging configuration problems. We strongly recommend you
4c9102
; set this to 'off' for production servers.
4c9102
; Default Value: Off
4c9102
; Development Value: On
4c9102
; Production Value: Off
4c9102
; http://php.net/display-startup-errors
4c9102
display_startup_errors = Off
4c9102
4c9102
; Besides displaying errors, PHP can also log errors to locations such as a
4c9102
; server-specific log, STDERR, or a location specified by the error_log
4c9102
; directive found below. While errors should not be displayed on productions
4c9102
; servers they should still be monitored and logging is a great way to do that.
4c9102
; Default Value: Off
4c9102
; Development Value: On
4c9102
; Production Value: On
4c9102
; http://php.net/log-errors
4c9102
log_errors = On
4c9102
4c9102
; Set maximum length of log_errors. In error_log information about the source is
4c9102
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
4c9102
; http://php.net/log-errors-max-len
4c9102
log_errors_max_len = 1024
4c9102
4c9102
; Do not log repeated messages. Repeated errors must occur in same file on same
4c9102
; line unless ignore_repeated_source is set true.
4c9102
; http://php.net/ignore-repeated-errors
4c9102
ignore_repeated_errors = Off
4c9102
4c9102
; Ignore source of message when ignoring repeated messages. When this setting
4c9102
; is On you will not log errors with repeated messages from different files or
4c9102
; source lines.
4c9102
; http://php.net/ignore-repeated-source
4c9102
ignore_repeated_source = Off
4c9102
4c9102
; If this parameter is set to Off, then memory leaks will not be shown (on
4c9102
; stdout or in the log). This has only effect in a debug compile, and if
4c9102
; error reporting includes E_WARNING in the allowed list
4c9102
; http://php.net/report-memleaks
4c9102
report_memleaks = On
4c9102
4c9102
; This setting is on by default.
4c9102
;report_zend_debug = 0
4c9102
4c9102
; Store the last error/warning message in $php_errormsg (boolean). Setting this value
4c9102
; to On can assist in debugging and is appropriate for development servers. It should
4c9102
; however be disabled on production servers.
4c9102
; Default Value: Off
4c9102
; Development Value: On
4c9102
; Production Value: Off
4c9102
; http://php.net/track-errors
4c9102
track_errors = Off
4c9102
4c9102
; Turn off normal error reporting and emit XML-RPC error XML
4c9102
; http://php.net/xmlrpc-errors
4c9102
;xmlrpc_errors = 0
4c9102
4c9102
; An XML-RPC faultCode
4c9102
;xmlrpc_error_number = 0
4c9102
4c9102
; When PHP displays or logs an error, it has the capability of formatting the
4c9102
; error message as HTML for easier reading. This directive controls whether
4c9102
; the error message is formatted as HTML or not.
4c9102
; Note: This directive is hardcoded to Off for the CLI SAPI
4c9102
; Default Value: On
4c9102
; Development Value: On
4c9102
; Production value: On
4c9102
; http://php.net/html-errors
4c9102
html_errors = On
4c9102
4c9102
; If html_errors is set to On *and* docref_root is not empty, then PHP
4c9102
; produces clickable error messages that direct to a page describing the error
4c9102
; or function causing the error in detail.
4c9102
; You can download a copy of the PHP manual from http://php.net/docs
4c9102
; and change docref_root to the base URL of your local copy including the
4c9102
; leading '/'. You must also specify the file extension being used including
4c9102
; the dot. PHP's default behavior is to leave these settings empty, in which
4c9102
; case no links to documentation are generated.
4c9102
; Note: Never use this feature for production boxes.
4c9102
; http://php.net/docref-root
4c9102
; Examples
4c9102
;docref_root = "/phpmanual/"
4c9102
4c9102
; http://php.net/docref-ext
4c9102
;docref_ext = .html
4c9102
4c9102
; String to output before an error message. PHP's default behavior is to leave
4c9102
; this setting blank.
4c9102
; http://php.net/error-prepend-string
4c9102
; Example:
4c9102
;error_prepend_string = ""
4c9102
4c9102
; String to output after an error message. PHP's default behavior is to leave
4c9102
; this setting blank.
4c9102
; http://php.net/error-append-string
4c9102
; Example:
4c9102
;error_append_string = ""
4c9102
4c9102
; Log errors to specified file. PHP's default behavior is to leave this value
4c9102
; empty.
4c9102
; http://php.net/error-log
4c9102
; Example:
4c9102
;error_log = php_errors.log
4c9102
; Log errors to syslog.
4c9102
;error_log = syslog
4c9102
4c9102
;windows.show_crt_warning
4c9102
; Default value: 0
4c9102
; Development value: 0
4c9102
; Production value: 0
4c9102
4c9102
;;;;;;;;;;;;;;;;;
4c9102
; Data Handling ;
4c9102
;;;;;;;;;;;;;;;;;
4c9102
4c9102
; The separator used in PHP generated URLs to separate arguments.
4c9102
; PHP's default setting is "&".
4c9102
; http://php.net/arg-separator.output
4c9102
; Example:
4c9102
;arg_separator.output = "&"
4c9102
4c9102
; List of separator(s) used by PHP to parse input URLs into variables.
4c9102
; PHP's default setting is "&".
4c9102
; NOTE: Every character in this directive is considered as separator!
4c9102
; http://php.net/arg-separator.input
4c9102
; Example:
4c9102
;arg_separator.input = ";&"
4c9102
4c9102
; This directive determines which super global arrays are registered when PHP
4c9102
; starts up. G,P,C,E & S are abbreviations for the following respective super
4c9102
; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
4c9102
; paid for the registration of these arrays and because ENV is not as commonly
4c9102
; used as the others, ENV is not recommended on productions servers. You
4c9102
; can still get access to the environment variables through getenv() should you
4c9102
; need to.
4c9102
; Default Value: "EGPCS"
4c9102
; Development Value: "GPCS"
4c9102
; Production Value: "GPCS";
4c9102
; http://php.net/variables-order
4c9102
variables_order = "GPCS"
4c9102
4c9102
; This directive determines which super global data (G,P,C,E & S) should
4c9102
; be registered into the super global array REQUEST. If so, it also determines
4c9102
; the order in which that data is registered. The values for this directive are
4c9102
; specified in the same manner as the variables_order directive, EXCEPT one.
4c9102
; Leaving this value empty will cause PHP to use the value set in the
4c9102
; variables_order directive. It does not mean it will leave the super globals
4c9102
; array REQUEST empty.
4c9102
; Default Value: None
4c9102
; Development Value: "GP"
4c9102
; Production Value: "GP"
4c9102
; http://php.net/request-order
4c9102
request_order = "GP"
4c9102
4c9102
; This directive determines whether PHP registers $argv & $argc each time it
4c9102
; runs. $argv contains an array of all the arguments passed to PHP when a script
4c9102
; is invoked. $argc contains an integer representing the number of arguments
4c9102
; that were passed when the script was invoked. These arrays are extremely
4c9102
; useful when running scripts from the command line. When this directive is
4c9102
; enabled, registering these variables consumes CPU cycles and memory each time
4c9102
; a script is executed. For performance reasons, this feature should be disabled
4c9102
; on production servers.
4c9102
; Note: This directive is hardcoded to On for the CLI SAPI
4c9102
; Default Value: On
4c9102
; Development Value: Off
4c9102
; Production Value: Off
4c9102
; http://php.net/register-argc-argv
4c9102
register_argc_argv = Off
4c9102
4c9102
; When enabled, the ENV, REQUEST and SERVER variables are created when they're
4c9102
; first used (Just In Time) instead of when the script starts. If these
4c9102
; variables are not used within a script, having this directive on will result
4c9102
; in a performance gain. The PHP directive register_argc_argv must be disabled
4c9102
; for this directive to have any affect.
4c9102
; http://php.net/auto-globals-jit
4c9102
auto_globals_jit = On
4c9102
4c9102
; Whether PHP will read the POST data.
4c9102
; This option is enabled by default.
4c9102
; Most likely, you won't want to disable this option globally. It causes $_POST
4c9102
; and $_FILES to always be empty; the only way you will be able to read the
4c9102
; POST data will be through the php://input stream wrapper. This can be useful
4c9102
; to proxy requests or to process the POST data in a memory efficient fashion.
4c9102
; http://php.net/enable-post-data-reading
4c9102
;enable_post_data_reading = Off
4c9102
4c9102
; Maximum size of POST data that PHP will accept.
4c9102
; Its value may be 0 to disable the limit. It is ignored if POST data reading
4c9102
; is disabled through enable_post_data_reading.
4c9102
; http://php.net/post-max-size
4c9102
post_max_size = 8M
4c9102
4c9102
; Automatically add files before PHP document.
4c9102
; http://php.net/auto-prepend-file
4c9102
auto_prepend_file =
4c9102
4c9102
; Automatically add files after PHP document.
4c9102
; http://php.net/auto-append-file
4c9102
auto_append_file =
4c9102
4c9102
; By default, PHP will output a character encoding using
4c9102
; the Content-type: header.  To disable sending of the charset, simply
4c9102
; set it to be empty.
4c9102
;
4c9102
; PHP's built-in default is text/html
4c9102
; http://php.net/default-mimetype
4c9102
default_mimetype = "text/html"
4c9102
4c9102
; PHP's default character set is set to empty.
4c9102
; http://php.net/default-charset
4c9102
default_charset = "UTF-8"
4c9102
4c9102
; PHP internal character encoding is set to empty.
4c9102
; If empty, default_charset is used.
4c9102
; http://php.net/internal-encoding
4c9102
;internal_encoding =
4c9102
4c9102
; PHP input character encoding is set to empty.
4c9102
; http://php.net/input-encoding
4c9102
;input_encoding =
4c9102
4c9102
; PHP output character encoding is set to empty.
4c9102
; mbstring or iconv output handler is used.
4c9102
; See also output_buffer.
4c9102
; http://php.net/output-encoding
4c9102
;output_encoding =
4c9102
4c9102
; Always populate the $HTTP_RAW_POST_DATA variable. PHP's default behavior is
4c9102
; to disable this feature and it will be removed in a future version.
4c9102
; If post reading is disabled through enable_post_data_reading,
4c9102
; $HTTP_RAW_POST_DATA is *NOT* populated.
4c9102
; http://php.net/always-populate-raw-post-data
4c9102
;always_populate_raw_post_data = -1
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;;;;;;;
4c9102
; Paths and Directories ;
4c9102
;;;;;;;;;;;;;;;;;;;;;;;;;
4c9102
4c9102
; UNIX: "/path1:/path2"
4c9102
;include_path = ".:/php/includes"
4c9102
;
4c9102
; Windows: "\path1;\path2"
4c9102
;include_path = ".;c:\php\includes"
4c9102
;
4c9102
; PHP's default setting for include_path is ".;/path/to/php/pear"
4c9102
; http://php.net/include-path
4c9102
4c9102
; The root of the PHP pages, used only if nonempty.
4c9102
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
4c9102
; if you are running php as a CGI under any web server (other than IIS)
4c9102
; see documentation for security issues.  The alternate is to use the
4c9102
; cgi.force_redirect configuration below
4c9102
; http://php.net/doc-root
4c9102
doc_root =
4c9102
4c9102
; The directory under which PHP opens the script using /~username used only
4c9102
; if nonempty.
4c9102
; http://php.net/user-dir
4c9102
user_dir =
4c9102
4c9102
; Directory in which the loadable extensions (modules) reside.
4c9102
; http://php.net/extension-dir
4c9102
; extension_dir = "./"
4c9102
; On windows:
4c9102
; extension_dir = "ext"
4c9102
4c9102
; Directory where the temporary files should be placed.
4c9102
; Defaults to the system default (see sys_get_temp_dir)
4c9102
; sys_temp_dir = "/tmp"
4c9102
4c9102
; Whether or not to enable the dl() function.  The dl() function does NOT work
4c9102
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
4c9102
; disabled on them.
4c9102
; http://php.net/enable-dl
4c9102
enable_dl = Off
4c9102
4c9102
; cgi.force_redirect is necessary to provide security running PHP as a CGI under
4c9102
; most web servers.  Left undefined, PHP turns this on by default.  You can
4c9102
; turn it off here AT YOUR OWN RISK
4c9102
; **You CAN safely turn this off for IIS, in fact, you MUST.**
4c9102
; http://php.net/cgi.force-redirect
4c9102
;cgi.force_redirect = 1
4c9102
4c9102
; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
4c9102
; every request. PHP's default behavior is to disable this feature.
4c9102
;cgi.nph = 1
4c9102
4c9102
; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
4c9102
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
4c9102
; will look for to know it is OK to continue execution.  Setting this variable MAY
4c9102
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
4c9102
; http://php.net/cgi.redirect-status-env
4c9102
;cgi.redirect_status_env =
4c9102
4c9102
; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
4c9102
; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
4c9102
; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
4c9102
; this to 1 will cause PHP CGI to fix its paths to conform to the spec.  A setting
4c9102
; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
4c9102
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
4c9102
; http://php.net/cgi.fix-pathinfo
4c9102
;cgi.fix_pathinfo=1
4c9102
4c9102
; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
4c9102
; security tokens of the calling client.  This allows IIS to define the
4c9102
; security context that the request runs under.  mod_fastcgi under Apache
4c9102
; does not currently support this feature (03/17/2002)
4c9102
; Set to 1 if running under IIS.  Default is zero.
4c9102
; http://php.net/fastcgi.impersonate
4c9102
;fastcgi.impersonate = 1
4c9102
4c9102
; Disable logging through FastCGI connection. PHP's default behavior is to enable
4c9102
; this feature.
4c9102
;fastcgi.logging = 0
4c9102
4c9102
; cgi.rfc2616_headers configuration option tells PHP what type of headers to
4c9102
; use when sending HTTP response code. If set to 0, PHP sends Status: header that
4c9102
; is supported by Apache. When this option is set to 1, PHP will send
4c9102
; RFC2616 compliant header.
4c9102
; Default is zero.
4c9102
; http://php.net/cgi.rfc2616-headers
4c9102
;cgi.rfc2616_headers = 0
4c9102
4c9102
;;;;;;;;;;;;;;;;
4c9102
; File Uploads ;
4c9102
;;;;;;;;;;;;;;;;
4c9102
4c9102
; Whether to allow HTTP file uploads.
4c9102
; http://php.net/file-uploads
4c9102
file_uploads = On
4c9102
4c9102
; Temporary directory for HTTP uploaded files (will use system default if not
4c9102
; specified).
4c9102
; http://php.net/upload-tmp-dir
4c9102
;upload_tmp_dir =
4c9102
4c9102
; Maximum allowed size for uploaded files.
4c9102
; http://php.net/upload-max-filesize
4c9102
upload_max_filesize = 2M
4c9102
4c9102
; Maximum number of files that can be uploaded via a single request
4c9102
max_file_uploads = 20
4c9102
4c9102
;;;;;;;;;;;;;;;;;;
4c9102
; Fopen wrappers ;
4c9102
;;;;;;;;;;;;;;;;;;
4c9102
4c9102
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
4c9102
; http://php.net/allow-url-fopen
4c9102
allow_url_fopen = On
4c9102
4c9102
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
4c9102
; http://php.net/allow-url-include
4c9102
allow_url_include = Off
4c9102
4c9102
; Define the anonymous ftp password (your email address). PHP's default setting
4c9102
; for this is empty.
4c9102
; http://php.net/from
4c9102
;from="john@doe.com"
4c9102
4c9102
; Define the User-Agent string. PHP's default setting for this is empty.
4c9102
; http://php.net/user-agent
4c9102
;user_agent="PHP"
4c9102
4c9102
; Default timeout for socket based streams (seconds)
4c9102
; http://php.net/default-socket-timeout
4c9102
default_socket_timeout = 60
4c9102
4c9102
; If your scripts have to deal with files from Macintosh systems,
4c9102
; or you are running on a Mac and need to deal with files from
4c9102
; unix or win32 systems, setting this flag will cause PHP to
4c9102
; automatically detect the EOL character in those files so that
4c9102
; fgets() and file() will work regardless of the source of the file.
4c9102
; http://php.net/auto-detect-line-endings
4c9102
;auto_detect_line_endings = Off
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;;;;
4c9102
; Dynamic Extensions ;
4c9102
;;;;;;;;;;;;;;;;;;;;;;
4c9102
4c9102
; If you wish to have an extension loaded automatically, use the following
4c9102
; syntax:
4c9102
;
4c9102
;   extension=modulename.extension
4c9102
;
4c9102
; For example, on Windows:
4c9102
;
4c9102
;   extension=msql.dll
4c9102
;
4c9102
; ... or under UNIX:
4c9102
;
4c9102
;   extension=msql.so
4c9102
;
4c9102
; ... or with a path:
4c9102
;
4c9102
;   extension=/path/to/extension/msql.so
4c9102
;
4c9102
; If you only provide the name of the extension, PHP will look for it in its
4c9102
; default extension directory.
4c9102
4c9102
;;;;
4c9102
; Note: packaged extension modules are now loaded via the .ini files
4c9102
; found in the directory /etc/php.d; these are loaded by default.
4c9102
;;;;
4c9102
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
; Module Settings ;
4c9102
;;;;;;;;;;;;;;;;;;;
4c9102
4c9102
[CLI Server]
4c9102
; Whether the CLI web server uses ANSI color coding in its terminal output.
4c9102
cli_server.color = On
4c9102
4c9102
[Date]
4c9102
; Defines the default timezone used by the date functions
4c9102
; http://php.net/date.timezone
4c9102
;date.timezone =
4c9102
4c9102
; http://php.net/date.default-latitude
4c9102
;date.default_latitude = 31.7667
4c9102
4c9102
; http://php.net/date.default-longitude
4c9102
;date.default_longitude = 35.2333
4c9102
4c9102
; http://php.net/date.sunrise-zenith
4c9102
;date.sunrise_zenith = 90.583333
4c9102
4c9102
; http://php.net/date.sunset-zenith
4c9102
;date.sunset_zenith = 90.583333
4c9102
4c9102
[filter]
4c9102
; http://php.net/filter.default
4c9102
;filter.default = unsafe_raw
4c9102
4c9102
; http://php.net/filter.default-flags
4c9102
;filter.default_flags =
4c9102
4c9102
[iconv]
4c9102
; Use of this INI entry is deprecated, use global input_encoding instead.
4c9102
; If empty, default_charset or input_encoding or iconv.input_encoding is used.
4c9102
; The precedence is: default_charset < intput_encoding < iconv.input_encoding
4c9102
;iconv.input_encoding =
4c9102
4c9102
; Use of this INI entry is deprecated, use global internal_encoding instead.
4c9102
; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
4c9102
; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
4c9102
;iconv.internal_encoding =
4c9102
4c9102
; Use of this INI entry is deprecated, use global output_encoding instead.
4c9102
; If empty, default_charset or output_encoding or iconv.output_encoding is used.
4c9102
; The precedence is: default_charset < output_encoding < iconv.output_encoding
4c9102
; To use an output encoding conversion, iconv's output handler must be set
4c9102
; otherwise output encoding conversion cannot be performed.
4c9102
;iconv.output_encoding =
4c9102
4c9102
[intl]
4c9102
;intl.default_locale =
4c9102
; This directive allows you to produce PHP errors when some error
4c9102
; happens within intl functions. The value is the level of the error produced.
4c9102
; Default is 0, which does not produce any errors.
4c9102
;intl.error_level = E_WARNING
4c9102
4c9102
[sqlite]
4c9102
; http://php.net/sqlite.assoc-case
4c9102
;sqlite.assoc_case = 0
4c9102
4c9102
[sqlite3]
4c9102
;sqlite3.extension_dir =
4c9102
4c9102
[Pcre]
4c9102
;PCRE library backtracking limit.
4c9102
; http://php.net/pcre.backtrack-limit
4c9102
;pcre.backtrack_limit=100000
4c9102
4c9102
;PCRE library recursion limit.
4c9102
;Please note that if you set this value to a high number you may consume all
4c9102
;the available process stack and eventually crash PHP (due to reaching the
4c9102
;stack size limit imposed by the Operating System).
4c9102
; http://php.net/pcre.recursion-limit
4c9102
;pcre.recursion_limit=100000
4c9102
4c9102
[Pdo]
4c9102
; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
4c9102
; http://php.net/pdo-odbc.connection-pooling
4c9102
;pdo_odbc.connection_pooling=strict
4c9102
4c9102
;pdo_odbc.db2_instance_name
4c9102
4c9102
[Pdo_mysql]
4c9102
; If mysqlnd is used: Number of cache slots for the internal result set cache
4c9102
; http://php.net/pdo_mysql.cache_size
4c9102
pdo_mysql.cache_size = 2000
4c9102
4c9102
; Default socket name for local MySQL connects.  If empty, uses the built-in
4c9102
; MySQL defaults.
4c9102
; http://php.net/pdo_mysql.default-socket
4c9102
pdo_mysql.default_socket=
4c9102
4c9102
[Phar]
4c9102
; http://php.net/phar.readonly
4c9102
;phar.readonly = On
4c9102
4c9102
; http://php.net/phar.require-hash
4c9102
;phar.require_hash = On
4c9102
4c9102
;phar.cache_list =
4c9102
4c9102
[mail function]
4c9102
; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
4c9102
; http://php.net/sendmail-path
4c9102
sendmail_path = /usr/sbin/sendmail -t -i
4c9102
4c9102
; Force the addition of the specified parameters to be passed as extra parameters
4c9102
; to the sendmail binary. These parameters will always replace the value of
4c9102
; the 5th parameter to mail(), even in safe mode.
4c9102
;mail.force_extra_parameters =
4c9102
4c9102
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
4c9102
mail.add_x_header = On
4c9102
4c9102
; The path to a log file that will log all mail() calls. Log entries include
4c9102
; the full path of the script, line number, To address and headers.
4c9102
;mail.log =
4c9102
; Log mail to syslog;
4c9102
;mail.log = syslog
4c9102
4c9102
[SQL]
4c9102
; http://php.net/sql.safe-mode
4c9102
sql.safe_mode = Off
4c9102
4c9102
[ODBC]
4c9102
; http://php.net/odbc.default-db
4c9102
;odbc.default_db    =  Not yet implemented
4c9102
4c9102
; http://php.net/odbc.default-user
4c9102
;odbc.default_user  =  Not yet implemented
4c9102
4c9102
; http://php.net/odbc.default-pw
4c9102
;odbc.default_pw    =  Not yet implemented
4c9102
4c9102
; Controls the ODBC cursor model.
4c9102
; Default: SQL_CURSOR_STATIC (default).
4c9102
;odbc.default_cursortype
4c9102
4c9102
; Allow or prevent persistent links.
4c9102
; http://php.net/odbc.allow-persistent
4c9102
odbc.allow_persistent = On
4c9102
4c9102
; Check that a connection is still valid before reuse.
4c9102
; http://php.net/odbc.check-persistent
4c9102
odbc.check_persistent = On
4c9102
4c9102
; Maximum number of persistent links.  -1 means no limit.
4c9102
; http://php.net/odbc.max-persistent
4c9102
odbc.max_persistent = -1
4c9102
4c9102
; Maximum number of links (persistent + non-persistent).  -1 means no limit.
4c9102
; http://php.net/odbc.max-links
4c9102
odbc.max_links = -1
4c9102
4c9102
; Handling of LONG fields.  Returns number of bytes to variables.  0 means
4c9102
; passthru.
4c9102
; http://php.net/odbc.defaultlrl
4c9102
odbc.defaultlrl = 4096
4c9102
4c9102
; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
4c9102
; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
4c9102
; of odbc.defaultlrl and odbc.defaultbinmode
4c9102
; http://php.net/odbc.defaultbinmode
4c9102
odbc.defaultbinmode = 1
4c9102
4c9102
;birdstep.max_links = -1
4c9102
4c9102
[Interbase]
4c9102
; Allow or prevent persistent links.
4c9102
ibase.allow_persistent = 1
4c9102
4c9102
; Maximum number of persistent links.  -1 means no limit.
4c9102
ibase.max_persistent = -1
4c9102
4c9102
; Maximum number of links (persistent + non-persistent).  -1 means no limit.
4c9102
ibase.max_links = -1
4c9102
4c9102
; Default database name for ibase_connect().
4c9102
;ibase.default_db =
4c9102
4c9102
; Default username for ibase_connect().
4c9102
;ibase.default_user =
4c9102
4c9102
; Default password for ibase_connect().
4c9102
;ibase.default_password =
4c9102
4c9102
; Default charset for ibase_connect().
4c9102
;ibase.default_charset =
4c9102
4c9102
; Default timestamp format.
4c9102
ibase.timestampformat = "%Y-%m-%d %H:%M:%S"
4c9102
4c9102
; Default date format.
4c9102
ibase.dateformat = "%Y-%m-%d"
4c9102
4c9102
; Default time format.
4c9102
ibase.timeformat = "%H:%M:%S"
4c9102
4c9102
[MySQL]
4c9102
; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
4c9102
; http://php.net/mysql.allow_local_infile
4c9102
mysql.allow_local_infile = On
4c9102
4c9102
; Allow or prevent persistent links.
4c9102
; http://php.net/mysql.allow-persistent
4c9102
mysql.allow_persistent = On
4c9102
4c9102
; If mysqlnd is used: Number of cache slots for the internal result set cache
4c9102
; http://php.net/mysql.cache_size
4c9102
mysql.cache_size = 2000
4c9102
4c9102
; Maximum number of persistent links.  -1 means no limit.
4c9102
; http://php.net/mysql.max-persistent
4c9102
mysql.max_persistent = -1
4c9102
4c9102
; Maximum number of links (persistent + non-persistent).  -1 means no limit.
4c9102
; http://php.net/mysql.max-links
4c9102
mysql.max_links = -1
4c9102
4c9102
; Default port number for mysql_connect().  If unset, mysql_connect() will use
4c9102
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
4c9102
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
4c9102
; at MYSQL_PORT.
4c9102
; http://php.net/mysql.default-port
4c9102
mysql.default_port =
4c9102
4c9102
; Default socket name for local MySQL connects.  If empty, uses the built-in
4c9102
; MySQL defaults.
4c9102
; http://php.net/mysql.default-socket
4c9102
mysql.default_socket =
4c9102
4c9102
; Default host for mysql_connect() (doesn't apply in safe mode).
4c9102
; http://php.net/mysql.default-host
4c9102
mysql.default_host =
4c9102
4c9102
; Default user for mysql_connect() (doesn't apply in safe mode).
4c9102
; http://php.net/mysql.default-user
4c9102
mysql.default_user =
4c9102
4c9102
; Default password for mysql_connect() (doesn't apply in safe mode).
4c9102
; Note that this is generally a *bad* idea to store passwords in this file.
4c9102
; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
4c9102
; and reveal this password!  And of course, any users with read access to this
4c9102
; file will be able to reveal the password as well.
4c9102
; http://php.net/mysql.default-password
4c9102
mysql.default_password =
4c9102
4c9102
; Maximum time (in seconds) for connect timeout. -1 means no limit
4c9102
; http://php.net/mysql.connect-timeout
4c9102
mysql.connect_timeout = 60
4c9102
4c9102
; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
4c9102
; SQL-Errors will be displayed.
4c9102
; http://php.net/mysql.trace-mode
4c9102
mysql.trace_mode = Off
4c9102
4c9102
[MySQLi]
4c9102
4c9102
; Maximum number of persistent links.  -1 means no limit.
4c9102
; http://php.net/mysqli.max-persistent
4c9102
mysqli.max_persistent = -1
4c9102
4c9102
; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
4c9102
; http://php.net/mysqli.allow_local_infile
4c9102
;mysqli.allow_local_infile = On
4c9102
4c9102
; Allow or prevent persistent links.
4c9102
; http://php.net/mysqli.allow-persistent
4c9102
mysqli.allow_persistent = On
4c9102
4c9102
; Maximum number of links.  -1 means no limit.
4c9102
; http://php.net/mysqli.max-links
4c9102
mysqli.max_links = -1
4c9102
4c9102
; If mysqlnd is used: Number of cache slots for the internal result set cache
4c9102
; http://php.net/mysqli.cache_size
4c9102
mysqli.cache_size = 2000
4c9102
4c9102
; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
4c9102
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
4c9102
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
4c9102
; at MYSQL_PORT.
4c9102
; http://php.net/mysqli.default-port
4c9102
mysqli.default_port = 3306
4c9102
4c9102
; Default socket name for local MySQL connects.  If empty, uses the built-in
4c9102
; MySQL defaults.
4c9102
; http://php.net/mysqli.default-socket
4c9102
mysqli.default_socket =
4c9102
4c9102
; Default host for mysql_connect() (doesn't apply in safe mode).
4c9102
; http://php.net/mysqli.default-host
4c9102
mysqli.default_host =
4c9102
4c9102
; Default user for mysql_connect() (doesn't apply in safe mode).
4c9102
; http://php.net/mysqli.default-user
4c9102
mysqli.default_user =
4c9102
4c9102
; Default password for mysqli_connect() (doesn't apply in safe mode).
4c9102
; Note that this is generally a *bad* idea to store passwords in this file.
4c9102
; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
4c9102
; and reveal this password!  And of course, any users with read access to this
4c9102
; file will be able to reveal the password as well.
4c9102
; http://php.net/mysqli.default-pw
4c9102
mysqli.default_pw =
4c9102
4c9102
; Allow or prevent reconnect
4c9102
mysqli.reconnect = Off
4c9102
4c9102
[mysqlnd]
4c9102
; Enable / Disable collection of general statistics by mysqlnd which can be
4c9102
; used to tune and monitor MySQL operations.
4c9102
; http://php.net/mysqlnd.collect_statistics
4c9102
mysqlnd.collect_statistics = On
4c9102
4c9102
; Enable / Disable collection of memory usage statistics by mysqlnd which can be
4c9102
; used to tune and monitor MySQL operations.
4c9102
; http://php.net/mysqlnd.collect_memory_statistics
4c9102
mysqlnd.collect_memory_statistics = Off
4c9102
4c9102
; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
4c9102
; http://php.net/mysqlnd.net_cmd_buffer_size
4c9102
;mysqlnd.net_cmd_buffer_size = 2048
4c9102
4c9102
; Size of a pre-allocated buffer used for reading data sent by the server in
4c9102
; bytes.
4c9102
; http://php.net/mysqlnd.net_read_buffer_size
4c9102
;mysqlnd.net_read_buffer_size = 32768
4c9102
4c9102
[OCI8]
4c9102
4c9102
; Connection: Enables privileged connections using external
4c9102
; credentials (OCI_SYSOPER, OCI_SYSDBA)
4c9102
; http://php.net/oci8.privileged-connect
4c9102
;oci8.privileged_connect = Off
4c9102
4c9102
; Connection: The maximum number of persistent OCI8 connections per
4c9102
; process. Using -1 means no limit.
4c9102
; http://php.net/oci8.max-persistent
4c9102
;oci8.max_persistent = -1
4c9102
4c9102
; Connection: The maximum number of seconds a process is allowed to
4c9102
; maintain an idle persistent connection. Using -1 means idle
4c9102
; persistent connections will be maintained forever.
4c9102
; http://php.net/oci8.persistent-timeout
4c9102
;oci8.persistent_timeout = -1
4c9102
4c9102
; Connection: The number of seconds that must pass before issuing a
4c9102
; ping during oci_pconnect() to check the connection validity. When
4c9102
; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
4c9102
; pings completely.
4c9102
; http://php.net/oci8.ping-interval
4c9102
;oci8.ping_interval = 60
4c9102
4c9102
; Connection: Set this to a user chosen connection class to be used
4c9102
; for all pooled server requests with Oracle 11g Database Resident
4c9102
; Connection Pooling (DRCP).  To use DRCP, this value should be set to
4c9102
; the same string for all web servers running the same application,
4c9102
; the database pool must be configured, and the connection string must
4c9102
; specify to use a pooled server.
4c9102
;oci8.connection_class =
4c9102
4c9102
; High Availability: Using On lets PHP receive Fast Application
4c9102
; Notification (FAN) events generated when a database node fails. The
4c9102
; database must also be configured to post FAN events.
4c9102
;oci8.events = Off
4c9102
4c9102
; Tuning: This option enables statement caching, and specifies how
4c9102
; many statements to cache. Using 0 disables statement caching.
4c9102
; http://php.net/oci8.statement-cache-size
4c9102
;oci8.statement_cache_size = 20
4c9102
4c9102
; Tuning: Enables statement prefetching and sets the default number of
4c9102
; rows that will be fetched automatically after statement execution.
4c9102
; http://php.net/oci8.default-prefetch
4c9102
;oci8.default_prefetch = 100
4c9102
4c9102
; Compatibility. Using On means oci_close() will not close
4c9102
; oci_connect() and oci_new_connect() connections.
4c9102
; http://php.net/oci8.old-oci-close-semantics
4c9102
;oci8.old_oci_close_semantics = Off
4c9102
4c9102
[PostgreSQL]
4c9102
; Allow or prevent persistent links.
4c9102
; http://php.net/pgsql.allow-persistent
4c9102
pgsql.allow_persistent = On
4c9102
4c9102
; Detect broken persistent links always with pg_pconnect().
4c9102
; Auto reset feature requires a little overheads.
4c9102
; http://php.net/pgsql.auto-reset-persistent
4c9102
pgsql.auto_reset_persistent = Off
4c9102
4c9102
; Maximum number of persistent links.  -1 means no limit.
4c9102
; http://php.net/pgsql.max-persistent
4c9102
pgsql.max_persistent = -1
4c9102
4c9102
; Maximum number of links (persistent+non persistent).  -1 means no limit.
4c9102
; http://php.net/pgsql.max-links
4c9102
pgsql.max_links = -1
4c9102
4c9102
; Ignore PostgreSQL backends Notice message or not.
4c9102
; Notice message logging require a little overheads.
4c9102
; http://php.net/pgsql.ignore-notice
4c9102
pgsql.ignore_notice = 0
4c9102
4c9102
; Log PostgreSQL backends Notice message or not.
4c9102
; Unless pgsql.ignore_notice=0, module cannot log notice message.
4c9102
; http://php.net/pgsql.log-notice
4c9102
pgsql.log_notice = 0
4c9102
4c9102
[Sybase-CT]
4c9102
; Allow or prevent persistent links.
4c9102
; http://php.net/sybct.allow-persistent
4c9102
sybct.allow_persistent = On
4c9102
4c9102
; Maximum number of persistent links.  -1 means no limit.
4c9102
; http://php.net/sybct.max-persistent
4c9102
sybct.max_persistent = -1
4c9102
4c9102
; Maximum number of links (persistent + non-persistent).  -1 means no limit.
4c9102
; http://php.net/sybct.max-links
4c9102
sybct.max_links = -1
4c9102
4c9102
; Minimum server message severity to display.
4c9102
; http://php.net/sybct.min-server-severity
4c9102
sybct.min_server_severity = 10
4c9102
4c9102
; Minimum client message severity to display.
4c9102
; http://php.net/sybct.min-client-severity
4c9102
sybct.min_client_severity = 10
4c9102
4c9102
; Set per-context timeout
4c9102
; http://php.net/sybct.timeout
4c9102
;sybct.timeout=
4c9102
4c9102
;sybct.packet_size
4c9102
4c9102
; The maximum time in seconds to wait for a connection attempt to succeed before returning failure.
4c9102
; Default: one minute
4c9102
;sybct.login_timeout=
4c9102
4c9102
; The name of the host you claim to be connecting from, for display by sp_who.
4c9102
; Default: none
4c9102
;sybct.hostname=
4c9102
4c9102
; Allows you to define how often deadlocks are to be retried. -1 means "forever".
4c9102
; Default: 0
4c9102
;sybct.deadlock_retry_count=
4c9102
4c9102
[bcmath]
4c9102
; Number of decimal digits for all bcmath functions.
4c9102
; http://php.net/bcmath.scale
4c9102
bcmath.scale = 0
4c9102
4c9102
[browscap]
4c9102
; http://php.net/browscap
4c9102
;browscap = extra/browscap.ini
4c9102
4c9102
[Session]
4c9102
; Handler used to store/retrieve data.
4c9102
; http://php.net/session.save-handler
4c9102
session.save_handler = files
4c9102
4c9102
; Argument passed to save_handler.  In the case of files, this is the path
4c9102
; where data files are stored. Note: Windows users have to change this
4c9102
; variable in order to use PHP's session functions.
4c9102
;
4c9102
; The path can be defined as:
4c9102
;
4c9102
;     session.save_path = "N;/path"
4c9102
;
4c9102
; where N is an integer.  Instead of storing all the session files in
4c9102
; /path, what this will do is use subdirectories N-levels deep, and
4c9102
; store the session data in those directories.  This is useful if
4c9102
; your OS has problems with many files in one directory, and is
4c9102
; a more efficient layout for servers that handle many sessions.
4c9102
;
4c9102
; NOTE 1: PHP will not create this directory structure automatically.
4c9102
;         You can use the script in the ext/session dir for that purpose.
4c9102
; NOTE 2: See the section on garbage collection below if you choose to
4c9102
;         use subdirectories for session storage
4c9102
;
4c9102
; The file storage module creates files using mode 600 by default.
4c9102
; You can change that by using
4c9102
;
4c9102
;     session.save_path = "N;MODE;/path"
4c9102
;
4c9102
; where MODE is the octal representation of the mode. Note that this
4c9102
; does not overwrite the process's umask.
4c9102
; http://php.net/session.save-path
4c9102
4c9102
; RPM note : session directory must be owned by process owner
4c9102
; for mod_php, see /etc/httpd/conf.d/php.conf
4c9102
; for php-fpm, see /etc/php-fpm.d/*conf
4c9102
;session.save_path = "/tmp"
4c9102
4c9102
; Whether to use strict session mode.
4c9102
; Strict session mode does not accept uninitialized session ID and regenerate
4c9102
; session ID if browser sends uninitialized session ID. Strict mode protects
4c9102
; applications from session fixation via session adoption vulnerability. It is
4c9102
; disabled by default for maximum compatibility, but enabling it is encouraged.
4c9102
; https://wiki.php.net/rfc/strict_sessions
4c9102
session.use_strict_mode = 0
4c9102
4c9102
; Whether to use cookies.
4c9102
; http://php.net/session.use-cookies
4c9102
session.use_cookies = 1
4c9102
4c9102
; http://php.net/session.cookie-secure
4c9102
;session.cookie_secure =
4c9102
4c9102
; This option forces PHP to fetch and use a cookie for storing and maintaining
4c9102
; the session id. We encourage this operation as it's very helpful in combating
4c9102
; session hijacking when not specifying and managing your own session id. It is
4c9102
; not the be-all and end-all of session hijacking defense, but it's a good start.
4c9102
; http://php.net/session.use-only-cookies
4c9102
session.use_only_cookies = 1
4c9102
4c9102
; Name of the session (used as cookie name).
4c9102
; http://php.net/session.name
4c9102
session.name = PHPSESSID
4c9102
4c9102
; Initialize session on request startup.
4c9102
; http://php.net/session.auto-start
4c9102
session.auto_start = 0
4c9102
4c9102
; Lifetime in seconds of cookie or, if 0, until browser is restarted.
4c9102
; http://php.net/session.cookie-lifetime
4c9102
session.cookie_lifetime = 0
4c9102
4c9102
; The path for which the cookie is valid.
4c9102
; http://php.net/session.cookie-path
4c9102
session.cookie_path = /
4c9102
4c9102
; The domain for which the cookie is valid.
4c9102
; http://php.net/session.cookie-domain
4c9102
session.cookie_domain =
4c9102
4c9102
; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
4c9102
; http://php.net/session.cookie-httponly
4c9102
session.cookie_httponly =
4c9102
4c9102
; Handler used to serialize data.  php is the standard serializer of PHP.
4c9102
; http://php.net/session.serialize-handler
4c9102
session.serialize_handler = php
4c9102
4c9102
; Defines the probability that the 'garbage collection' process is started
4c9102
; on every session initialization. The probability is calculated by using
4c9102
; gc_probability/gc_divisor. Where session.gc_probability is the numerator
4c9102
; and gc_divisor is the denominator in the equation. Setting this value to 1
4c9102
; when the session.gc_divisor value is 100 will give you approximately a 1% chance
4c9102
; the gc will run on any give request.
4c9102
; Default Value: 1
4c9102
; Development Value: 1
4c9102
; Production Value: 1
4c9102
; http://php.net/session.gc-probability
4c9102
session.gc_probability = 1
4c9102
4c9102
; Defines the probability that the 'garbage collection' process is started on every
4c9102
; session initialization. The probability is calculated by using the following equation:
4c9102
; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
4c9102
; session.gc_divisor is the denominator in the equation. Setting this value to 1
4c9102
; when the session.gc_divisor value is 100 will give you approximately a 1% chance
4c9102
; the gc will run on any give request. Increasing this value to 1000 will give you
4c9102
; a 0.1% chance the gc will run on any give request. For high volume production servers,
4c9102
; this is a more efficient approach.
4c9102
; Default Value: 100
4c9102
; Development Value: 1000
4c9102
; Production Value: 1000
4c9102
; http://php.net/session.gc-divisor
4c9102
session.gc_divisor = 1000
4c9102
4c9102
; After this number of seconds, stored data will be seen as 'garbage' and
4c9102
; cleaned up by the garbage collection process.
4c9102
; http://php.net/session.gc-maxlifetime
4c9102
session.gc_maxlifetime = 1440
4c9102
4c9102
; NOTE: If you are using the subdirectory option for storing session files
4c9102
;       (see session.save_path above), then garbage collection does *not*
4c9102
;       happen automatically.  You will need to do your own garbage
4c9102
;       collection through a shell script, cron entry, or some other method.
4c9102
;       For example, the following script would is the equivalent of
4c9102
;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
4c9102
;          find /path/to/sessions -cmin +24 -type f | xargs rm
4c9102
4c9102
; Check HTTP Referer to invalidate externally stored URLs containing ids.
4c9102
; HTTP_REFERER has to contain this substring for the session to be
4c9102
; considered as valid.
4c9102
; http://php.net/session.referer-check
4c9102
session.referer_check =
4c9102
4c9102
; How many bytes to read from the file.
4c9102
; http://php.net/session.entropy-length
4c9102
;session.entropy_length = 32
4c9102
4c9102
; Specified here to create the session id.
4c9102
; http://php.net/session.entropy-file
4c9102
; Defaults to /dev/urandom
4c9102
; On systems that don't have /dev/urandom but do have /dev/arandom, this will default to /dev/arandom
4c9102
; If neither are found at compile time, the default is no entropy file.
4c9102
; On windows, setting the entropy_length setting will activate the
4c9102
; Windows random source (using the CryptoAPI)
4c9102
;session.entropy_file = /dev/urandom
4c9102
4c9102
; Set to {nocache,private,public,} to determine HTTP caching aspects
4c9102
; or leave this empty to avoid sending anti-caching headers.
4c9102
; http://php.net/session.cache-limiter
4c9102
session.cache_limiter = nocache
4c9102
4c9102
; Document expires after n minutes.
4c9102
; http://php.net/session.cache-expire
4c9102
session.cache_expire = 180
4c9102
4c9102
; trans sid support is disabled by default.
4c9102
; Use of trans sid may risk your users' security.
4c9102
; Use this option with caution.
4c9102
; - User may send URL contains active session ID
4c9102
;   to other person via. email/irc/etc.
4c9102
; - URL that contains active session ID may be stored
4c9102
;   in publicly accessible computer.
4c9102
; - User may access your site with the same session ID
4c9102
;   always using URL stored in browser's history or bookmarks.
4c9102
; http://php.net/session.use-trans-sid
4c9102
session.use_trans_sid = 0
4c9102
4c9102
; Select a hash function for use in generating session ids.
4c9102
; Possible Values
4c9102
;   0  (MD5 128 bits)
4c9102
;   1  (SHA-1 160 bits)
4c9102
; This option may also be set to the name of any hash function supported by
4c9102
; the hash extension. A list of available hashes is returned by the hash_algos()
4c9102
; function.
4c9102
; http://php.net/session.hash-function
4c9102
session.hash_function = 0
4c9102
4c9102
; Define how many bits are stored in each character when converting
4c9102
; the binary hash data to something readable.
4c9102
; Possible values:
4c9102
;   4  (4 bits: 0-9, a-f)
4c9102
;   5  (5 bits: 0-9, a-v)
4c9102
;   6  (6 bits: 0-9, a-z, A-Z, "-", ",")
4c9102
; Default Value: 4
4c9102
; Development Value: 5
4c9102
; Production Value: 5
4c9102
; http://php.net/session.hash-bits-per-character
4c9102
session.hash_bits_per_character = 5
4c9102
4c9102
; The URL rewriter will look for URLs in a defined set of HTML tags.
4c9102
; form/fieldset are special; if you include them here, the rewriter will
4c9102
; add a hidden <input> field with the info which is otherwise appended
4c9102
; to URLs.  If you want XHTML conformity, remove the form entry.
4c9102
; Note that all valid entries require a "=", even if no value follows.
4c9102
; Default Value: "a=href,area=href,frame=src,form=,fieldset="
4c9102
; Development Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
4c9102
; Production Value: "a=href,area=href,frame=src,input=src,form=fakeentry"
4c9102
; http://php.net/url-rewriter.tags
4c9102
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
4c9102
4c9102
; Enable upload progress tracking in $_SESSION
4c9102
; Default Value: On
4c9102
; Development Value: On
4c9102
; Production Value: On
4c9102
; http://php.net/session.upload-progress.enabled
4c9102
;session.upload_progress.enabled = On
4c9102
4c9102
; Cleanup the progress information as soon as all POST data has been read
4c9102
; (i.e. upload completed).
4c9102
; Default Value: On
4c9102
; Development Value: On
4c9102
; Production Value: On
4c9102
; http://php.net/session.upload-progress.cleanup
4c9102
;session.upload_progress.cleanup = On
4c9102
4c9102
; A prefix used for the upload progress key in $_SESSION
4c9102
; Default Value: "upload_progress_"
4c9102
; Development Value: "upload_progress_"
4c9102
; Production Value: "upload_progress_"
4c9102
; http://php.net/session.upload-progress.prefix
4c9102
;session.upload_progress.prefix = "upload_progress_"
4c9102
4c9102
; The index name (concatenated with the prefix) in $_SESSION
4c9102
; containing the upload progress information
4c9102
; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
4c9102
; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
4c9102
; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
4c9102
; http://php.net/session.upload-progress.name
4c9102
;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
4c9102
4c9102
; How frequently the upload progress should be updated.
4c9102
; Given either in percentages (per-file), or in bytes
4c9102
; Default Value: "1%"
4c9102
; Development Value: "1%"
4c9102
; Production Value: "1%"
4c9102
; http://php.net/session.upload-progress.freq
4c9102
;session.upload_progress.freq =  "1%"
4c9102
4c9102
; The minimum delay between updates, in seconds
4c9102
; Default Value: 1
4c9102
; Development Value: 1
4c9102
; Production Value: 1
4c9102
; http://php.net/session.upload-progress.min-freq
4c9102
;session.upload_progress.min_freq = "1"
4c9102
4c9102
[MSSQL]
4c9102
; Allow or prevent persistent links.
4c9102
mssql.allow_persistent = On
4c9102
4c9102
; Maximum number of persistent links.  -1 means no limit.
4c9102
mssql.max_persistent = -1
4c9102
4c9102
; Maximum number of links (persistent+non persistent).  -1 means no limit.
4c9102
mssql.max_links = -1
4c9102
4c9102
; Minimum error severity to display.
4c9102
mssql.min_error_severity = 10
4c9102
4c9102
; Minimum message severity to display.
4c9102
mssql.min_message_severity = 10
4c9102
4c9102
; Compatibility mode with old versions of PHP 3.0.
4c9102
mssql.compatibility_mode = Off
4c9102
4c9102
; Connect timeout
4c9102
;mssql.connect_timeout = 5
4c9102
4c9102
; Query timeout
4c9102
;mssql.timeout = 60
4c9102
4c9102
; Valid range 0 - 2147483647.  Default = 4096.
4c9102
;mssql.textlimit = 4096
4c9102
4c9102
; Valid range 0 - 2147483647.  Default = 4096.
4c9102
;mssql.textsize = 4096
4c9102
4c9102
; Limits the number of records in each batch.  0 = all records in one batch.
4c9102
;mssql.batchsize = 0
4c9102
4c9102
; Specify how datetime and datetim4 columns are returned
4c9102
; On => Returns data converted to SQL server settings
4c9102
; Off => Returns values as YYYY-MM-DD hh:mm:ss
4c9102
;mssql.datetimeconvert = On
4c9102
4c9102
; Use NT authentication when connecting to the server
4c9102
mssql.secure_connection = Off
4c9102
4c9102
; Specify max number of processes. -1 = library default
4c9102
; msdlib defaults to 25
4c9102
; FreeTDS defaults to 4096
4c9102
;mssql.max_procs = -1
4c9102
4c9102
; Specify client character set.
4c9102
; If empty or not set the client charset from freetds.conf is used
4c9102
; This is only used when compiled with FreeTDS
4c9102
;mssql.charset = "ISO-8859-1"
4c9102
4c9102
[Assertion]
4c9102
; Assert(expr); active by default.
4c9102
; http://php.net/assert.active
4c9102
;assert.active = On
4c9102
4c9102
; Issue a PHP warning for each failed assertion.
4c9102
; http://php.net/assert.warning
4c9102
;assert.warning = On
4c9102
4c9102
; Don't bail out by default.
4c9102
; http://php.net/assert.bail
4c9102
;assert.bail = Off
4c9102
4c9102
; User-function to be called if an assertion fails.
4c9102
; http://php.net/assert.callback
4c9102
;assert.callback = 0
4c9102
4c9102
; Eval the expression with current error_reporting().  Set to true if you want
4c9102
; error_reporting(0) around the eval().
4c9102
; http://php.net/assert.quiet-eval
4c9102
;assert.quiet_eval = 0
4c9102
4c9102
[mbstring]
4c9102
; language for internal character representation.
4c9102
; This affects mb_send_mail() and mbstrig.detect_order.
4c9102
; http://php.net/mbstring.language
4c9102
;mbstring.language = Japanese
4c9102
4c9102
; Use of this INI entry is deprecated, use global internal_encoding instead.
4c9102
; internal/script encoding.
4c9102
; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
4c9102
; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
4c9102
; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
4c9102
;mbstring.internal_encoding =
4c9102
4c9102
; Use of this INI entry is deprecated, use global input_encoding instead.
4c9102
; http input encoding.
4c9102
; mbstring.encoding_traslation = On is needed to use this setting.
4c9102
; If empty, default_charset or input_encoding or mbstring.input is used.
4c9102
; The precedence is: default_charset < intput_encoding < mbsting.http_input
4c9102
; http://php.net/mbstring.http-input
4c9102
;mbstring.http_input =
4c9102
4c9102
; Use of this INI entry is deprecated, use global output_encoding instead.
4c9102
; http output encoding.
4c9102
; mb_output_handler must be registered as output buffer to function.
4c9102
; If empty, default_charset or output_encoding or mbstring.http_output is used.
4c9102
; The precedence is: default_charset < output_encoding < mbstring.http_output
4c9102
; To use an output encoding conversion, mbstring's output handler must be set
4c9102
; otherwise output encoding conversion cannot be performed.
4c9102
; http://php.net/mbstring.http-output
4c9102
;mbstring.http_output =
4c9102
4c9102
; enable automatic encoding translation according to
4c9102
; mbstring.internal_encoding setting. Input chars are
4c9102
; converted to internal encoding by setting this to On.
4c9102
; Note: Do _not_ use automatic encoding translation for
4c9102
;       portable libs/applications.
4c9102
; http://php.net/mbstring.encoding-translation
4c9102
;mbstring.encoding_translation = Off
4c9102
4c9102
; automatic encoding detection order.
4c9102
; "auto" detect order is changed according to mbstring.language
4c9102
; http://php.net/mbstring.detect-order
4c9102
;mbstring.detect_order = auto
4c9102
4c9102
; substitute_character used when character cannot be converted
4c9102
; one from another
4c9102
; http://php.net/mbstring.substitute-character
4c9102
;mbstring.substitute_character = none
4c9102
4c9102
; overload(replace) single byte functions by mbstring functions.
4c9102
; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
4c9102
; etc. Possible values are 0,1,2,4 or combination of them.
4c9102
; For example, 7 for overload everything.
4c9102
; 0: No overload
4c9102
; 1: Overload mail() function
4c9102
; 2: Overload str*() functions
4c9102
; 4: Overload ereg*() functions
4c9102
; http://php.net/mbstring.func-overload
4c9102
;mbstring.func_overload = 0
4c9102
4c9102
; enable strict encoding detection.
4c9102
; Default: Off
4c9102
;mbstring.strict_detection = On
4c9102
4c9102
; This directive specifies the regex pattern of content types for which mb_output_handler()
4c9102
; is activated.
4c9102
; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
4c9102
;mbstring.http_output_conv_mimetype=
4c9102
4c9102
[gd]
4c9102
; Tell the jpeg decode to ignore warnings and try to create
4c9102
; a gd image. The warning will then be displayed as notices
4c9102
; disabled by default
4c9102
; http://php.net/gd.jpeg-ignore-warning
4c9102
;gd.jpeg_ignore_warning = 0
4c9102
4c9102
[exif]
4c9102
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
4c9102
; With mbstring support this will automatically be converted into the encoding
4c9102
; given by corresponding encode setting. When empty mbstring.internal_encoding
4c9102
; is used. For the decode settings you can distinguish between motorola and
4c9102
; intel byte order. A decode setting cannot be empty.
4c9102
; http://php.net/exif.encode-unicode
4c9102
;exif.encode_unicode = ISO-8859-15
4c9102
4c9102
; http://php.net/exif.decode-unicode-motorola
4c9102
;exif.decode_unicode_motorola = UCS-2BE
4c9102
4c9102
; http://php.net/exif.decode-unicode-intel
4c9102
;exif.decode_unicode_intel    = UCS-2LE
4c9102
4c9102
; http://php.net/exif.encode-jis
4c9102
;exif.encode_jis =
4c9102
4c9102
; http://php.net/exif.decode-jis-motorola
4c9102
;exif.decode_jis_motorola = JIS
4c9102
4c9102
; http://php.net/exif.decode-jis-intel
4c9102
;exif.decode_jis_intel    = JIS
4c9102
4c9102
[Tidy]
4c9102
; The path to a default tidy configuration file to use when using tidy
4c9102
; http://php.net/tidy.default-config
4c9102
;tidy.default_config = /usr/local/lib/php/default.tcfg
4c9102
4c9102
; Should tidy clean and repair output automatically?
4c9102
; WARNING: Do not use this option if you are generating non-html content
4c9102
; such as dynamic images
4c9102
; http://php.net/tidy.clean-output
4c9102
tidy.clean_output = Off
4c9102
4c9102
[soap]
4c9102
; Enables or disables WSDL caching feature.
4c9102
; http://php.net/soap.wsdl-cache-enabled
4c9102
soap.wsdl_cache_enabled=1
4c9102
4c9102
; Sets the directory name where SOAP extension will put cache files.
4c9102
; http://php.net/soap.wsdl-cache-dir
4c9102
4c9102
; RPM note : cache directory must be owned by process owner
4c9102
; for mod_php, see /etc/httpd/conf.d/php.conf
4c9102
; for php-fpm, see /etc/php-fpm.d/*conf
4c9102
soap.wsdl_cache_dir="/tmp"
4c9102
4c9102
; (time to live) Sets the number of second while cached file will be used
4c9102
; instead of original one.
4c9102
; http://php.net/soap.wsdl-cache-ttl
4c9102
soap.wsdl_cache_ttl=86400
4c9102
4c9102
; Sets the size of the cache limit. (Max. number of WSDL files to cache)
4c9102
soap.wsdl_cache_limit = 5
4c9102
4c9102
[sysvshm]
4c9102
; A default size of the shared memory segment
4c9102
;sysvshm.init_mem = 10000
4c9102
4c9102
[ldap]
4c9102
; Sets the maximum number of open links or -1 for unlimited.
4c9102
ldap.max_links = -1
4c9102
4c9102
[mcrypt]
4c9102
; For more information about mcrypt settings see http://php.net/mcrypt-module-open
4c9102
4c9102
; Directory where to load mcrypt algorithms
4c9102
; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
4c9102
;mcrypt.algorithms_dir=
4c9102
4c9102
; Directory where to load mcrypt modes
4c9102
; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
4c9102
;mcrypt.modes_dir=
4c9102
4c9102
[dba]
4c9102
;dba.default_handler=
4c9102
4c9102
[curl]
4c9102
; A default value for the CURLOPT_CAINFO option. This is required to be an
4c9102
; absolute path.
4c9102
;curl.cainfo =
4c9102
4c9102
[openssl]
4c9102
; The location of a Certificate Authority (CA) file on the local filesystem
4c9102
; to use when verifying the identity of SSL/TLS peers. Most users should
4c9102
; not specify a value for this directive as PHP will attempt to use the
4c9102
; OS-managed cert stores in its absence. If specified, this value may still
4c9102
; be overridden on a per-stream basis via the "cafile" SSL stream context
4c9102
; option.
4c9102
;openssl.cafile=
4c9102
4c9102
; If openssl.cafile is not specified or if the CA file is not found, the
4c9102
; directory pointed to by openssl.capath is searched for a suitable
4c9102
; certificate. This value must be a correctly hashed certificate directory.
4c9102
; Most users should not specify a value for this directive as PHP will
4c9102
; attempt to use the OS-managed cert stores in its absence. If specified,
4c9102
; this value may still be overridden on a per-stream basis via the "capath"
4c9102
; SSL stream context option.
4c9102
;openssl.capath=
4c9102
4c9102
; Local Variables:
4c9102
; tab-width: 4
4c9102
; End: