Blame SOURCES/php.ini

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