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