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