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