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