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