Blame SOURCES/php.ini

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