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