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