Blame SOURCES/php.ini

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