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