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