[PHP] \n \n;;;;;;;;;;;;;;;;;;; \n; About php.ini ; \n;;;;;;;;;;;;;;;;;;; \n; PHP's initialization file, generally called php.ini, is responsible for \n; configuring many of the aspects of PHP's behavior. \n \n; PHP attempts to find and load this configuration from a number of locations. \n; The following is a summary of its search order: \n; 1. SAPI module specific location. \n; 2. The PHPRC environment variable. (As of PHP 5.2.0) \n; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0) \n; 4. Current working directory (except CLI) \n; 5. The web server's directory (for SAPI modules), or directory of PHP \n; (otherwise in Windows) \n; 6. The directory from the --with-config-file-path compile time option, or the \n; Windows directory (usually C:\\windows) \n; See the PHP docs for more specific information. \n; http://php.net/configuration.file \n \n; The syntax of the file is extremely simple. Whitespace and lines \n; beginning with a semicolon are silently ignored (as you probably guessed). \n; Section headers (e.g. [Foo]) are also silently ignored, even though \n; they might mean something in the future. \n \n; Directives following the section heading [PATH=/www/mysite] only \n; apply to PHP files in the /www/mysite directory. Directives \n; following the section heading [HOST=www.example.com] only apply to \n; PHP files served from www.example.com. Directives set in these \n; special sections cannot be overridden by user-defined INI files or \n; at runtime. Currently, [PATH=] and [HOST=] sections only work under \n; CGI/FastCGI. \n; http://php.net/ini.sections \n \n; Directives are specified using the following syntax: \n; directive = value \n; Directive names are *case sensitive* - foo=bar is different from FOO=bar. \n; Directives are variables used to configure PHP or PHP extensions. \n; There is no name validation. If PHP can't find an expected \n; directive because it is not set or is mistyped, a default value will be used. \n \n; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one \n; of the INI constants (On, Off, True, False, Yes, No and None) or an expression \n; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a \n; previously set variable or directive (e.g. ${foo}) \n \n; Expressions in the INI file are limited to bitwise operators and parentheses: \n; | bitwise OR \n; ^ bitwise XOR \n; & bitwise AND \n; ~ bitwise NOT \n; ! boolean NOT \n \n; Boolean flags can be turned on using the values 1, On, True or Yes. \n; They can be turned off using the values 0, Off, False or No. \n \n; An empty string can be denoted by simply not writing anything after the equal \n; sign, or by using the None keyword: \n \n; foo = ; sets foo to an empty string \n; foo = None ; sets foo to an empty string \n; foo = "None" ; sets foo to the string 'None' \n \n; If you use constants in your value, and these constants belong to a \n; dynamically loaded extension (either a PHP extension or a Zend extension), \n; you may only use these constants *after* the line that loads the extension. \n \n;;;;;;;;;;;;;;;;;;; \n; About this file ; \n;;;;;;;;;;;;;;;;;;; \n; PHP comes packaged with two INI files. One that is recommended to be used \n; in production environments and one that is recommended to be used in \n; development environments. \n \n; php.ini-production contains settings which hold security, performance and \n; best practices at its core. But please be aware, these settings may break \n; compatibility with older or less security conscience applications. We \n; recommending using the production ini in production and testing environments. \n \n; php.ini-development is very similar to its production variant, except it is \n; much more verbose when it comes to errors. We recommend using the \n; development version only in development environments, as errors shown to \n; application users can inadvertently leak otherwise secure information. \n \n; This is the php.ini-development INI file. \n \n;;;;;;;;;;;;;;;;;;; \n; Quick Reference ; \n;;;;;;;;;;;;;;;;;;; \n; The following are all the settings which are different in either the production \n; or development versions of the INIs with respect to PHP's default behavior. \n; Please see the actual settings later in the document for more details as to why \n; we recommend these changes in PHP's behavior. \n \n; display_errors \n; Default Value: On \n; Development Value: On \n; Production Value: Off \n \n; display_startup_errors \n; Default Value: Off \n; Development Value: On \n; Production Value: Off \n \n; error_reporting \n; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED \n; Development Value: E_ALL \n; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT \n \n; log_errors \n; Default Value: Off \n; Development Value: On \n; Production Value: On \n \n; max_input_time \n; Default Value: -1 (Unlimited) \n; Development Value: 60 (60 seconds) \n; Production Value: 60 (60 seconds) \n \n; output_buffering \n; Default Value: Off \n; Development Value: 4096 \n; Production Value: 4096 \n \n; register_argc_argv \n; Default Value: On \n; Development Value: Off \n; Production Value: Off \n \n; request_order \n; Default Value: None \n; Development Value: "GP" \n; Production Value: "GP" \n \n; session.gc_divisor \n; Default Value: 100 \n; Development Value: 1000 \n; Production Value: 1000 \n \n; session.sid_bits_per_character \n; Default Value: 4 \n; Development Value: 5 \n; Production Value: 5 \n \n; short_open_tag \n; Default Value: On \n; Development Value: Off \n; Production Value: Off \n \n; variables_order \n; Default Value: "EGPCS" \n; Development Value: "GPCS" \n; Production Value: "GPCS" \n \n;;;;;;;;;;;;;;;;;;;; \n; php.ini Options ; \n;;;;;;;;;;;;;;;;;;;; \n; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini" \n;user_ini.filename = ".user.ini" \n \n; To disable this feature set this option to an empty value \n;user_ini.filename = \n \n; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes) \n;user_ini.cache_ttl = 300 \n \n;;;;;;;;;;;;;;;;;;;; \n; Language Options ; \n;;;;;;;;;;;;;;;;;;;; \n \n; Enable the PHP scripting language engine under Apache. \n; http://php.net/engine \nengine=On \n \n; This directive determines whether or not PHP will recognize code between \n; tags as PHP source which should be processed as such. It is \n; generally recommended that should be used and that this feature \n; should be disabled, as enabling it may result in issues when generating XML \n; documents, however this remains supported for backward compatibility reasons. \n; Note that this directive does not control the would work. \n; http://php.net/syntax-highlighting \n;highlight.string = #DD0000 \n;highlight.comment = #FF9900 \n;highlight.keyword = #007700 \n;highlight.default = #0000BB \n;highlight.html = #000000 \n \n; If enabled, the request will be allowed to complete even if the user aborts \n; the request. Consider enabling it if executing long requests, which may end up \n; being interrupted by the user or a browser timing out. PHP's default behavior \n; is to disable this feature. \n; http://php.net/ignore-user-abort \n;ignore_user_abort = On \n \n; Determines the size of the realpath cache to be used by PHP. This value should \n; be increased on systems where PHP opens many files to reflect the quantity of \n; the file operations performed. \n; Note: if open_basedir is set, the cache is disabled \n; http://php.net/realpath-cache-size \n;realpath_cache_size = 4096k \n \n; Duration of time, in seconds for which to cache realpath information for a given \n; file or directory. For systems with rarely changing files, consider increasing this \n; value. \n; http://php.net/realpath-cache-ttl \n;realpath_cache_ttl = 120 \n \n; Enables or disables the circular reference collector. \n; http://php.net/zend.enable-gc \nzend.enable_gc=On \n \n; If enabled, scripts may be written in encodings that are incompatible with \n; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such \n; encodings. To use this feature, mbstring extension must be enabled. \n; Default: Off \n;zend.multibyte = Off \n \n; Allows to set the default encoding for the scripts. This value will be used \n; unless "declare(encoding=...)" directive appears at the top of the script. \n; Only affects if zend.multibyte is set. \n; Default: "" \n;zend.script_encoding = \n \n; Allows to include or exclude arguments from stack traces generated for exceptions. \n; In production, it is recommended to turn this setting on to prohibit the output \n; of sensitive information in stack traces \n; Default: Off \nzend.exception_ignore_args=Off \n \n;;;;;;;;;;;;;;;;; \n; Miscellaneous ; \n;;;;;;;;;;;;;;;;; \n \n; Decides whether PHP may expose the fact that it is installed on the server \n; (e.g. by adding its signature to the Web server header). It is no security \n; threat in any way, but it makes it possible to determine whether you use PHP \n; on your server or not. \n; http://php.net/expose-php \nexpose_php=On \n \n;;;;;;;;;;;;;;;;;;; \n; Resource Limits ; \n;;;;;;;;;;;;;;;;;;; \n \n; Maximum execution time of each script, in seconds \n; http://php.net/max-execution-time \n; Note: This directive is hardcoded to 0 for the CLI SAPI \nmax_execution_time=120 \n \n; Maximum amount of time each script may spend parsing request data. It's a good \n; idea to limit this time on productions servers in order to eliminate unexpectedly \n; long running scripts. \n; Note: This directive is hardcoded to -1 for the CLI SAPI \n; Default Value: -1 (Unlimited) \n; Development Value: 60 (60 seconds) \n; Production Value: 60 (60 seconds) \n; http://php.net/max-input-time \nmax_input_time=60 \n \n; Maximum input variable nesting level \n; http://php.net/max-input-nesting-level \n;max_input_nesting_level = 64 \n \n; How many GET/POST/COOKIE input variables may be accepted \n;max_input_vars = 1000 \n \n; Maximum amount of memory a script may consume \n; http://php.net/memory-limit \nmemory_limit=512M \n \n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; \n; Error handling and logging ; \n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; \n \n; This directive informs PHP of which errors, warnings and notices you would like \n; it to take action for. The recommended way of setting values for this \n; directive is through the use of the error level constants and bitwise \n; operators. The error level constants are below here for convenience as well as \n; some common settings and their meanings. \n; By default, PHP is set to take action on all errors, notices and warnings EXCEPT \n; those related to E_NOTICE and E_STRICT, which together cover best practices and \n; recommended coding standards in PHP. For performance reasons, this is the \n; recommend error reporting setting. Your production server shouldn't be wasting \n; resources complaining about best practices and coding standards. That's what \n; development servers and development settings are for. \n; Note: The php.ini-development file has this setting as E_ALL. This \n; means it pretty much reports everything which is exactly what you want during \n; development and early testing. \n; \n; Error Level Constants: \n; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0) \n; E_ERROR - fatal run-time errors \n; E_RECOVERABLE_ERROR - almost fatal run-time errors \n; E_WARNING - run-time warnings (non-fatal errors) \n; E_PARSE - compile-time parse errors \n; E_NOTICE - run-time notices (these are warnings which often result \n; from a bug in your code, but it's possible that it was \n; intentional (e.g., using an uninitialized variable and \n; relying on the fact it is automatically initialized to an \n; empty string) \n; E_STRICT - run-time notices, enable to have PHP suggest changes \n; to your code which will ensure the best interoperability \n; and forward compatibility of your code \n; E_CORE_ERROR - fatal errors that occur during PHP's initial startup \n; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's \n; initial startup \n; E_COMPILE_ERROR - fatal compile-time errors \n; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) \n; E_USER_ERROR - user-generated error message \n; E_USER_WARNING - user-generated warning message \n; E_USER_NOTICE - user-generated notice message \n; E_DEPRECATED - warn about code that will not work in future versions \n; of PHP \n; E_USER_DEPRECATED - user-generated deprecation warnings \n; \n; Common Values: \n; E_ALL (Show all errors, warnings and notices including coding standards.) \n; E_ALL & ~E_NOTICE (Show all errors, except for notices) \n; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.) \n; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors) \n; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED \n; Development Value: E_ALL \n; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT \n; http://php.net/error-reporting \nerror_reporting=E_ALL & ~E_DEPRECATED & ~E_STRICT \n \n; This directive controls whether or not and where PHP will output errors, \n; notices and warnings too. Error output is very useful during development, but \n; it could be very dangerous in production environments. Depending on the code \n; which is triggering the error, sensitive information could potentially leak \n; out of your application such as database usernames and passwords or worse. \n; For production environments, we recommend logging errors rather than \n; sending them to STDOUT. \n; Possible Values: \n; Off = Do not display any errors \n; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) \n; On or stdout = Display errors to STDOUT \n; Default Value: On \n; Development Value: On \n; Production Value: Off \n; http://php.net/display-errors \ndisplay_errors=On \n \n; The display of errors which occur during PHP's startup sequence are handled \n; separately from display_errors. PHP's default behavior is to suppress those \n; errors from clients. Turning the display of startup errors on can be useful in \n; debugging configuration problems. We strongly recommend you \n; set this to 'off' for production servers. \n; Default Value: Off \n; Development Value: On \n; Production Value: Off \n; http://php.net/display-startup-errors \ndisplay_startup_errors=On \n \n; Besides displaying errors, PHP can also log errors to locations such as a \n; server-specific log, STDERR, or a location specified by the error_log \n; directive found below. While errors should not be displayed on productions \n; servers they should still be monitored and logging is a great way to do that. \n; Default Value: Off \n; Development Value: On \n; Production Value: On \n; http://php.net/log-errors \nlog_errors=On \n \n; Set maximum length of log_errors. In error_log information about the source is \n; added. The default is 1024 and 0 allows to not apply any maximum length at all. \n; http://php.net/log-errors-max-len \nlog_errors_max_len=1024 \n \n; Do not log repeated messages. Repeated errors must occur in same file on same \n; line unless ignore_repeated_source is set true. \n; http://php.net/ignore-repeated-errors \nignore_repeated_errors=Off \n \n; Ignore source of message when ignoring repeated messages. When this setting \n; is On you will not log errors with repeated messages from different files or \n; source lines. \n; http://php.net/ignore-repeated-source \nignore_repeated_source=Off \n \n; If this parameter is set to Off, then memory leaks will not be shown (on \n; stdout or in the log). This is only effective in a debug compile, and if \n; error reporting includes E_WARNING in the allowed list \n; http://php.net/report-memleaks \nreport_memleaks=On \n \n; This setting is on by default. \n;report_zend_debug = 0 \n \n; Store the last error/warning message in $php_errormsg (boolean). Setting this value \n; to On can assist in debugging and is appropriate for development servers. It should \n; however be disabled on production servers. \n; This directive is DEPRECATED. \n; Default Value: Off \n; Development Value: Off \n; Production Value: Off \n; http://php.net/track-errors \n;track_errors = Off \n \n; Turn off normal error reporting and emit XML-RPC error XML \n; http://php.net/xmlrpc-errors \n;xmlrpc_errors = 0 \n \n; An XML-RPC faultCode \n;xmlrpc_error_number = 0 \n \n; When PHP displays or logs an error, it has the capability of formatting the \n; error message as HTML for easier reading. This directive controls whether \n; the error message is formatted as HTML or not. \n; Note: This directive is hardcoded to Off for the CLI SAPI \n; http://php.net/html-errors \n;html_errors = On \n \n; If html_errors is set to On *and* docref_root is not empty, then PHP \n; produces clickable error messages that direct to a page describing the error \n; or function causing the error in detail. \n; You can download a copy of the PHP manual from http://php.net/docs \n; and change docref_root to the base URL of your local copy including the \n; leading '/'. You must also specify the file extension being used including \n; the dot. PHP's default behavior is to leave these settings empty, in which \n; case no links to documentation are generated. \n; Note: Never use this feature for production boxes. \n; http://php.net/docref-root \n; Examples \n;docref_root = "/phpmanual/" \n \n; http://php.net/docref-ext \n;docref_ext = .html \n \n; String to output before an error message. PHP's default behavior is to leave \n; this setting blank. \n; http://php.net/error-prepend-string \n; Example: \n;error_prepend_string = "" \n \n; String to output after an error message. PHP's default behavior is to leave \n; this setting blank. \n; http://php.net/error-append-string \n; Example: \n;error_append_string = "" \n \n; Log errors to specified file. PHP's default behavior is to leave this value \n; empty. \n; http://php.net/error-log \n; Example: \n;error_log = php_errors.log \n; Log errors to syslog (Event Log on Windows). \n;error_log = syslog \n \n; The syslog ident is a string which is prepended to every message logged \n; to syslog. Only used when error_log is set to syslog. \n;syslog.ident = php \n \n; The syslog facility is used to specify what type of program is logging \n; the message. Only used when error_log is set to syslog. \n;syslog.facility = user \n \n; Set this to disable filtering control characters (the default). \n; Some loggers only accept NVT-ASCII, others accept anything that's not \n; control characters. If your logger accepts everything, then no filtering \n; is needed at all. \n; Allowed values are: \n; ascii (all printable ASCII characters and NL) \n; no-ctrl (all characters except control characters) \n; all (all characters) \n; raw (like "all", but messages are not split at newlines) \n; http://php.net/syslog.filter \n;syslog.filter = ascii \n \n;windows.show_crt_warning \n; Default value: 0 \n; Development value: 0 \n; Production value: 0 \n \n;;;;;;;;;;;;;;;;; \n; Data Handling ; \n;;;;;;;;;;;;;;;;; \n \n; The separator used in PHP generated URLs to separate arguments. \n; PHP's default setting is "&". \n; http://php.net/arg-separator.output \n; Example: \n;arg_separator.output = "&" \n \n; List of separator(s) used by PHP to parse input URLs into variables. \n; PHP's default setting is "&". \n; NOTE: Every character in this directive is considered as separator! \n; http://php.net/arg-separator.input \n; Example: \n;arg_separator.input = ";&" \n \n; This directive determines which super global arrays are registered when PHP \n; starts up. G,P,C,E & S are abbreviations for the following respective super \n; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty \n; paid for the registration of these arrays and because ENV is not as commonly \n; used as the others, ENV is not recommended on productions servers. You \n; can still get access to the environment variables through getenv() should you \n; need to. \n; Default Value: "EGPCS" \n; Development Value: "GPCS" \n; Production Value: "GPCS"; \n; http://php.net/variables-order \nvariables_order="GPCS" \n \n; This directive determines which super global data (G,P & C) should be \n; registered into the super global array REQUEST. If so, it also determines \n; the order in which that data is registered. The values for this directive \n; are specified in the same manner as the variables_order directive, \n; EXCEPT one. Leaving this value empty will cause PHP to use the value set \n; in the variables_order directive. It does not mean it will leave the super \n; globals array REQUEST empty. \n; Default Value: None \n; Development Value: "GP" \n; Production Value: "GP" \n; http://php.net/request-order \nrequest_order="GP" \n \n; This directive determines whether PHP registers $argv & $argc each time it \n; runs. $argv contains an array of all the arguments passed to PHP when a script \n; is invoked. $argc contains an integer representing the number of arguments \n; that were passed when the script was invoked. These arrays are extremely \n; useful when running scripts from the command line. When this directive is \n; enabled, registering these variables consumes CPU cycles and memory each time \n; a script is executed. For performance reasons, this feature should be disabled \n; on production servers. \n; Note: This directive is hardcoded to On for the CLI SAPI \n; Default Value: On \n; Development Value: Off \n; Production Value: Off \n; http://php.net/register-argc-argv \nregister_argc_argv=Off \n \n; When enabled, the ENV, REQUEST and SERVER variables are created when they're \n; first used (Just In Time) instead of when the script starts. If these \n; variables are not used within a script, having this directive on will result \n; in a performance gain. The PHP directive register_argc_argv must be disabled \n; for this directive to have any effect. \n; http://php.net/auto-globals-jit \nauto_globals_jit=On \n \n; Whether PHP will read the POST data. \n; This option is enabled by default. \n; Most likely, you won't want to disable this option globally. It causes $_POST \n; and $_FILES to always be empty; the only way you will be able to read the \n; POST data will be through the php://input stream wrapper. This can be useful \n; to proxy requests or to process the POST data in a memory efficient fashion. \n; http://php.net/enable-post-data-reading \n;enable_post_data_reading = Off \n \n; Maximum size of POST data that PHP will accept. \n; Its value may be 0 to disable the limit. It is ignored if POST data reading \n; is disabled through enable_post_data_reading. \n; http://php.net/post-max-size \npost_max_size=40M \n \n; Automatically add files before PHP document. \n; http://php.net/auto-prepend-file \nauto_prepend_file= \n \n; Automatically add files after PHP document. \n; http://php.net/auto-append-file \nauto_append_file= \n \n; By default, PHP will output a media type using the Content-Type header. To \n; disable this, simply set it to be empty. \n; \n; PHP's built-in default media type is set to text/html. \n; http://php.net/default-mimetype \ndefault_mimetype="text/html" \n \n; PHP's default character set is set to UTF-8. \n; http://php.net/default-charset \ndefault_charset="UTF-8" \n \n; PHP internal character encoding is set to empty. \n; If empty, default_charset is used. \n; http://php.net/internal-encoding \n;internal_encoding = \n \n; PHP input character encoding is set to empty. \n; If empty, default_charset is used. \n; http://php.net/input-encoding \n;input_encoding = \n \n; PHP output character encoding is set to empty. \n; If empty, default_charset is used. \n; See also output_buffer. \n; http://php.net/output-encoding \n;output_encoding = \n \n;;;;;;;;;;;;;;;;;;;;;;;;; \n; Paths and Directories ; \n;;;;;;;;;;;;;;;;;;;;;;;;; \n \n; UNIX: "/path1:/path2" \ninclude_path=C:\\xampp\\php\\PEAR \n; \n; Windows: "\\path1;\\path2" \n;include_path = ".;c:\\php\\includes" \n; \n; PHP's default setting for include_path is ".;/path/to/php/pear" \n; http://php.net/include-path \n \n; The root of the PHP pages, used only if nonempty. \n; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root \n; if you are running php as a CGI under any web server (other than IIS) \n; see documentation for security issues. The alternate is to use the \n; cgi.force_redirect configuration below \n; http://php.net/doc-root \ndoc_root= \n \n; The directory under which PHP opens the script using /~username used only \n; if nonempty. \n; http://php.net/user-dir \nuser_dir= \n \n; Directory in which the loadable extensions (modules) reside. \n; http://php.net/extension-dir \n;extension_dir = "./" \n; On windows: \nextension_dir="C:\\xampp\\php\\ext" \n \n; Directory where the temporary files should be placed. \n; Defaults to the system default (see sys_get_temp_dir) \n;sys_temp_dir = "/tmp" \n \n; Whether or not to enable the dl() function. The dl() function does NOT work \n; properly in multithreaded servers, such as IIS or Zeus, and is automatically \n; disabled on them. \n; http://php.net/enable-dl \nenable_dl=Off \n \n; cgi.force_redirect is necessary to provide security running PHP as a CGI under \n; most web servers. Left undefined, PHP turns this on by default. You can \n; turn it off here AT YOUR OWN RISK \n; **You CAN safely turn this off for IIS, in fact, you MUST.** \n; http://php.net/cgi.force-redirect \n;cgi.force_redirect = 1 \n \n; if cgi.nph is enabled it will force cgi to always sent Status: 200 with \n; every request. PHP's default behavior is to disable this feature. \n;cgi.nph = 1 \n \n; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape \n; (iPlanet) web servers, you MAY need to set an environment variable name that PHP \n; will look for to know it is OK to continue execution. Setting this variable MAY \n; cause security issues, KNOW WHAT YOU ARE DOING FIRST. \n; http://php.net/cgi.redirect-status-env \n;cgi.redirect_status_env = \n \n; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's \n; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok \n; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting \n; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting \n; of zero causes PHP to behave as before. Default is 1. You should fix your scripts \n; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. \n; http://php.net/cgi.fix-pathinfo \n;cgi.fix_pathinfo=1 \n \n; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside \n; of the web tree and people will not be able to circumvent .htaccess security. \n;cgi.discard_path=1 \n \n; FastCGI under IIS supports the ability to impersonate \n; security tokens of the calling client. This allows IIS to define the \n; security context that the request runs under. mod_fastcgi under Apache \n; does not currently support this feature (03/17/2002) \n; Set to 1 if running under IIS. Default is zero. \n; http://php.net/fastcgi.impersonate \n;fastcgi.impersonate = 1 \n \n; Disable logging through FastCGI connection. PHP's default behavior is to enable \n; this feature. \n;fastcgi.logging = 0 \n \n; cgi.rfc2616_headers configuration option tells PHP what type of headers to \n; use when sending HTTP response code. If set to 0, PHP sends Status: header that \n; is supported by Apache. When this option is set to 1, PHP will send \n; RFC2616 compliant header. \n; Default is zero. \n; http://php.net/cgi.rfc2616-headers \n;cgi.rfc2616_headers = 0 \n \n; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #! \n; (shebang) at the top of the running script. This line might be needed if the \n; script support running both as stand-alone script and via PHP CGI<. PHP in CGI \n; mode skips this line and ignores its content if this directive is turned on. \n; http://php.net/cgi.check-shebang-line \n;cgi.check_shebang_line=1 \n \n;;;;;;;;;;;;;;;; \n; File Uploads ; \n;;;;;;;;;;;;;;;; \n \n; Whether to allow HTTP file uploads. \n; http://php.net/file-uploads \nfile_uploads=On \n \n; Temporary directory for HTTP uploaded files (will use system default if not \n; specified). \n; http://php.net/upload-tmp-dir \nupload_tmp_dir="C:\\xampp\\tmp" \n \n; Maximum allowed size for uploaded files. \n; http://php.net/upload-max-filesize \nupload_max_filesize=40M \n \n; Maximum number of files that can be uploaded via a single request \nmax_file_uploads=20 \n \n;;;;;;;;;;;;;;;;;; \n; Fopen wrappers ; \n;;;;;;;;;;;;;;;;;; \n \n; Whether to allow the treatment of URLs (like http:// or ftp://) as files. \n; http://php.net/allow-url-fopen \nallow_url_fopen=On \n \n; Whether to allow include/require to open URLs (like http:// or ftp://) as files. \n; http://php.net/allow-url-include \nallow_url_include=Off \n \n; Define the anonymous ftp password (your email address). PHP's default setting \n; for this is empty. \n; http://php.net/from \n;from="john@doe.com" \n \n; Define the User-Agent string. PHP's default setting for this is empty. \n; http://php.net/user-agent \n;user_agent="PHP" \n \n; Default timeout for socket based streams (seconds) \n; http://php.net/default-socket-timeout \ndefault_socket_timeout=60 \n \n; If your scripts have to deal with files from Macintosh systems, \n; or you are running on a Mac and need to deal with files from \n; unix or win32 systems, setting this flag will cause PHP to \n; automatically detect the EOL character in those files so that \n; fgets() and file() will work regardless of the source of the file. \n; http://php.net/auto-detect-line-endings \n;auto_detect_line_endings = Off \n \n;;;;;;;;;;;;;;;;;;;;;; \n; Dynamic Extensions ; \n;;;;;;;;;;;;;;;;;;;;;; \n \n; If you wish to have an extension loaded automatically, use the following \n; syntax: \n; \n; extension=modulename \n; \n; For example: \n; \n; extension=mysqli \n; \n; When the extension library to load is not located in the default extension \n; directory, You may specify an absolute path to the library file: \n; \n; extension=/path/to/extension/mysqli.so \n; \n; Note : The syntax used in previous PHP versions ('extension=.so' and \n; 'extension='php_.dll') is supported for legacy reasons and may be \n; deprecated in a future PHP major version. So, when it is possible, please \n; move to the new ('extension=) syntax. \n; \n; Notes for Windows environments : \n; \n; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+) \n; extension folders as well as the separate PECL DLL download (PHP 5+). \n; Be sure to appropriately set the extension_dir directive. \n; \nextension=redis \nextension=bz2 \nextension=curl \n;extension=ffi \n;extension=ftp \nextension=fileinfo \nextension=gd2 \nextension=gettext \n;extension=gmp \n;extension=intl \n;extension=imap \n;extension=ldap \nextension=mbstring \nextension=exif ; Must be after mbstring as it depends on it \nextension=mysqli \n;extension=oci8_12c ; Use with Oracle Database 12c Instant Client \n;extension=odbc \n;extension=openssl \n;extension=pdo_firebird \nextension=pdo_mysql \n;extension=pdo_oci \n;extension=pdo_odbc \n;extension=pdo_pgsql \nextension=pdo_sqlite \n;extension=pgsql \n;extension=shmop \n \n; The MIBS data available in the PHP distribution must be installed. \n; See http://www.php.net/manual/en/snmp.installation.php \n;extension=snmp \n \n;extension=soap \n;extension=sockets \n;extension=sodium \n;extension=sqlite3 \n;extension=tidy \n;extension=xmlrpc \n;extension=xsl \n \n;;;;;;;;;;;;;;;;;;; \n; Module Settings ; \n;;;;;;;;;;;;;;;;;;; \nasp_tags=Off \ndisplay_startup_errors=On \ntrack_errors=Off \ny2k_compliance=On \nallow_call_time_pass_reference=Off \nsafe_mode=Off \nsafe_mode_gid=Off \nsafe_mode_allowed_env_vars=PHP_ \nsafe_mode_protected_env_vars=LD_LIBRARY_PATH \nerror_log="C:\\xampp\\php\\logs\\php_error_log" \nregister_globals=Off \nregister_long_arrays=Off \nmagic_quotes_gpc=Off \nmagic_quotes_runtime=Off \nmagic_quotes_sybase=Off \nextension=php_openssl.dll \nextension=php_ftp.dll \n \n[CLI Server] \n; Whether the CLI web server uses ANSI color coding in its terminal output. \ncli_server.color=On \n \n[Date] \n; Defines the default timezone used by the date functions \n; http://php.net/date.timezone \n;date.timezone = \n \n; http://php.net/date.default-latitude \n;date.default_latitude = 31.7667 \n \n; http://php.net/date.default-longitude \n;date.default_longitude = 35.2333 \n \n; http://php.net/date.sunrise-zenith \n;date.sunrise_zenith = 90.583333 \n \n; http://php.net/date.sunset-zenith \n;date.sunset_zenith = 90.583333 \n \n[filter] \n; http://php.net/filter.default \n;filter.default = unsafe_raw \n \n; http://php.net/filter.default-flags \n;filter.default_flags = \n \n[iconv] \n; Use of this INI entry is deprecated, use global input_encoding instead. \n; If empty, default_charset or input_encoding or iconv.input_encoding is used. \n; The precedence is: default_charset < input_encoding < iconv.input_encoding \n;iconv.input_encoding = \n \n; Use of this INI entry is deprecated, use global internal_encoding instead. \n; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. \n; The precedence is: default_charset < internal_encoding < iconv.internal_encoding \n;iconv.internal_encoding = \n \n; Use of this INI entry is deprecated, use global output_encoding instead. \n; If empty, default_charset or output_encoding or iconv.output_encoding is used. \n; The precedence is: default_charset < output_encoding < iconv.output_encoding \n; To use an output encoding conversion, iconv's output handler must be set \n; otherwise output encoding conversion cannot be performed. \n;iconv.output_encoding = \n \n[imap] \n; rsh/ssh logins are disabled by default. Use this INI entry if you want to \n; enable them. Note that the IMAP library does not filter mailbox names before \n; passing them to rsh/ssh command, thus passing untrusted data to this function \n; with rsh/ssh enabled is insecure. \n;imap.enable_insecure_rsh=0 \n \n[intl] \n;intl.default_locale = \n; This directive allows you to produce PHP errors when some error \n; happens within intl functions. The value is the level of the error produced. \n; Default is 0, which does not produce any errors. \n;intl.error_level = E_WARNING \n;intl.use_exceptions = 0 \n \n[sqlite3] \n; Directory pointing to SQLite3 extensions \n; http://php.net/sqlite3.extension-dir \n;sqlite3.extension_dir = \n \n; SQLite defensive mode flag (only available from SQLite 3.26+) \n; When the defensive flag is enabled, language features that allow ordinary \n; SQL to deliberately corrupt the database file are disabled. This forbids \n; writing directly to the schema, shadow tables (eg. FTS data tables), or \n; the sqlite_dbpage virtual table. \n; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html \n; (for older SQLite versions, this flag has no use) \n;sqlite3.defensive = 1 \n \n[Pcre] \n; PCRE library backtracking limit. \n; http://php.net/pcre.backtrack-limit \n;pcre.backtrack_limit=100000 \n \n; PCRE library recursion limit. \n; Please note that if you set this value to a high number you may consume all \n; the available process stack and eventually crash PHP (due to reaching the \n; stack size limit imposed by the Operating System). \n; http://php.net/pcre.recursion-limit \n;pcre.recursion_limit=100000 \n \n; Enables or disables JIT compilation of patterns. This requires the PCRE \n; library to be compiled with JIT support. \n;pcre.jit=1 \n \n[Pdo] \npdo_mysql.default_socket="MySQL" \n; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" \n; http://php.net/pdo-odbc.connection-pooling \n;pdo_odbc.connection_pooling=strict \n \n;pdo_odbc.db2_instance_name \n \n[Pdo_mysql] \n; Default socket name for local MySQL connects. If empty, uses the built-in \n; MySQL defaults. \npdo_mysql.default_socket= \n \n[Phar] \n; http://php.net/phar.readonly \n;phar.readonly = On \n \n; http://php.net/phar.require-hash \n;phar.require_hash = On \n \n;phar.cache_list = \n \n[mail function] \n; For Win32 only. \n; http://php.net/smtp \nSMTP=localhost \n; http://php.net/smtp-port \nsmtp_port=25 \n \n; For Win32 only. \n; http://php.net/sendmail-from \n;sendmail_from = me@example.com \n \n; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). \n; http://php.net/sendmail-path \n;sendmail_path = \n \n; Force the addition of the specified parameters to be passed as extra parameters \n; to the sendmail binary. These parameters will always replace the value of \n; the 5th parameter to mail(). \n;mail.force_extra_parameters = \n \n; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename \nmail.add_x_header=Off \n \n; The path to a log file that will log all mail() calls. Log entries include \n; the full path of the script, line number, To address and headers. \n;mail.log = \n; Log mail to syslog (Event Log on Windows). \n;mail.log = syslog \n \n[ODBC] \n; http://php.net/odbc.default-db \n;odbc.default_db = Not yet implemented \n \n; http://php.net/odbc.default-user \n;odbc.default_user = Not yet implemented \n \n; http://php.net/odbc.default-pw \n;odbc.default_pw = Not yet implemented \n \n; Controls the ODBC cursor model. \n; Default: SQL_CURSOR_STATIC (default). \n;odbc.default_cursortype \n \n; Allow or prevent persistent links. \n; http://php.net/odbc.allow-persistent \nodbc.allow_persistent=On \n \n; Check that a connection is still valid before reuse. \n; http://php.net/odbc.check-persistent \nodbc.check_persistent=On \n \n; Maximum number of persistent links. -1 means no limit. \n; http://php.net/odbc.max-persistent \nodbc.max_persistent=-1 \n \n; Maximum number of links (persistent + non-persistent). -1 means no limit. \n; http://php.net/odbc.max-links \nodbc.max_links=-1 \n \n; Handling of LONG fields. Returns number of bytes to variables. 0 means \n; passthru. \n; http://php.net/odbc.defaultlrl \nodbc.defaultlrl=4096 \n \n; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. \n; See the documentation on odbc_binmode and odbc_longreadlen for an explanation \n; of odbc.defaultlrl and odbc.defaultbinmode \n; http://php.net/odbc.defaultbinmode \nodbc.defaultbinmode=1 \n \n[MySQLi] \n \n; Maximum number of persistent links. -1 means no limit. \n; http://php.net/mysqli.max-persistent \nmysqli.max_persistent=-1 \n \n; Allow accessing, from PHP's perspective, local files with LOAD DATA statements \n; http://php.net/mysqli.allow_local_infile \n;mysqli.allow_local_infile = On \n \n; Allow or prevent persistent links. \n; http://php.net/mysqli.allow-persistent \nmysqli.allow_persistent=On \n \n; Maximum number of links. -1 means no limit. \n; http://php.net/mysqli.max-links \nmysqli.max_links=-1 \n \n; Default port number for mysqli_connect(). If unset, mysqli_connect() will use \n; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the \n; compile-time value defined MYSQL_PORT (in that order). Win32 will only look \n; at MYSQL_PORT. \n; http://php.net/mysqli.default-port \nmysqli.default_port=3306 \n \n; Default socket name for local MySQL connects. If empty, uses the built-in \n; MySQL defaults. \n; http://php.net/mysqli.default-socket \nmysqli.default_socket= \n \n; Default host for mysqli_connect() (doesn't apply in safe mode). \n; http://php.net/mysqli.default-host \nmysqli.default_host= \n \n; Default user for mysqli_connect() (doesn't apply in safe mode). \n; http://php.net/mysqli.default-user \nmysqli.default_user= \n \n; Default password for mysqli_connect() (doesn't apply in safe mode). \n; Note that this is generally a *bad* idea to store passwords in this file. \n; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") \n; and reveal this password! And of course, any users with read access to this \n; file will be able to reveal the password as well. \n; http://php.net/mysqli.default-pw \nmysqli.default_pw= \n \n; Allow or prevent reconnect \nmysqli.reconnect=Off \n \n[mysqlnd] \n; Enable / Disable collection of general statistics by mysqlnd which can be \n; used to tune and monitor MySQL operations. \nmysqlnd.collect_statistics=On \n \n; Enable / Disable collection of memory usage statistics by mysqlnd which can be \n; used to tune and monitor MySQL operations. \nmysqlnd.collect_memory_statistics=On \n \n; Records communication from all extensions using mysqlnd to the specified log \n; file. \n; http://php.net/mysqlnd.debug \n;mysqlnd.debug = \n \n; Defines which queries will be logged. \n;mysqlnd.log_mask = 0 \n \n; Default size of the mysqlnd memory pool, which is used by result sets. \n;mysqlnd.mempool_default_size = 16000 \n \n; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. \n;mysqlnd.net_cmd_buffer_size = 2048 \n \n; Size of a pre-allocated buffer used for reading data sent by the server in \n; bytes. \n;mysqlnd.net_read_buffer_size = 32768 \n \n; Timeout for network requests in seconds. \n;mysqlnd.net_read_timeout = 31536000 \n \n; SHA-256 Authentication Plugin related. File with the MySQL server public RSA \n; key. \n;mysqlnd.sha256_server_public_key = \n \n[OCI8] \n \n; Connection: Enables privileged connections using external \n; credentials (OCI_SYSOPER, OCI_SYSDBA) \n; http://php.net/oci8.privileged-connect \n;oci8.privileged_connect = Off \n \n; Connection: The maximum number of persistent OCI8 connections per \n; process. Using -1 means no limit. \n; http://php.net/oci8.max-persistent \n;oci8.max_persistent = -1 \n \n; Connection: The maximum number of seconds a process is allowed to \n; maintain an idle persistent connection. Using -1 means idle \n; persistent connections will be maintained forever. \n; http://php.net/oci8.persistent-timeout \n;oci8.persistent_timeout = -1 \n \n; Connection: The number of seconds that must pass before issuing a \n; ping during oci_pconnect() to check the connection validity. When \n; set to 0, each oci_pconnect() will cause a ping. Using -1 disables \n; pings completely. \n; http://php.net/oci8.ping-interval \n;oci8.ping_interval = 60 \n \n; Connection: Set this to a user chosen connection class to be used \n; for all pooled server requests with Oracle 11g Database Resident \n; Connection Pooling (DRCP). To use DRCP, this value should be set to \n; the same string for all web servers running the same application, \n; the database pool must be configured, and the connection string must \n; specify to use a pooled server. \n;oci8.connection_class = \n \n; High Availability: Using On lets PHP receive Fast Application \n; Notification (FAN) events generated when a database node fails. The \n; database must also be configured to post FAN events. \n;oci8.events = Off \n \n; Tuning: This option enables statement caching, and specifies how \n; many statements to cache. Using 0 disables statement caching. \n; http://php.net/oci8.statement-cache-size \n;oci8.statement_cache_size = 20 \n \n; Tuning: Enables statement prefetching and sets the default number of \n; rows that will be fetched automatically after statement execution. \n; http://php.net/oci8.default-prefetch \n;oci8.default_prefetch = 100 \n \n; Compatibility. Using On means oci_close() will not close \n; oci_connect() and oci_new_connect() connections. \n; http://php.net/oci8.old-oci-close-semantics \n;oci8.old_oci_close_semantics = Off \n \n[PostgreSQL] \n; Allow or prevent persistent links. \n; http://php.net/pgsql.allow-persistent \npgsql.allow_persistent=On \n \n; Detect broken persistent links always with pg_pconnect(). \n; Auto reset feature requires a little overheads. \n; http://php.net/pgsql.auto-reset-persistent \npgsql.auto_reset_persistent=Off \n \n; Maximum number of persistent links. -1 means no limit. \n; http://php.net/pgsql.max-persistent \npgsql.max_persistent=-1 \n \n; Maximum number of links (persistent+non persistent). -1 means no limit. \n; http://php.net/pgsql.max-links \npgsql.max_links=-1 \n \n; Ignore PostgreSQL backends Notice message or not. \n; Notice message logging require a little overheads. \n; http://php.net/pgsql.ignore-notice \npgsql.ignore_notice=0 \n \n; Log PostgreSQL backends Notice message or not. \n; Unless pgsql.ignore_notice=0, module cannot log notice message. \n; http://php.net/pgsql.log-notice \npgsql.log_notice=0 \n \n[bcmath] \n; Number of decimal digits for all bcmath functions. \n; http://php.net/bcmath.scale \nbcmath.scale=0 \n \n[browscap] \n; http://php.net/browscap \nbrowscap="C:\\xampp\\php\\extras\\browscap.ini" \n \n[Session] \n; Handler used to store/retrieve data. \n; http://php.net/session.save-handler \nsession.save_handler=files \n \n; Argument passed to save_handler. In the case of files, this is the path \n; where data files are stored. Note: Windows users have to change this \n; variable in order to use PHP's session functions. \n; \n; The path can be defined as: \n; \n; session.save_path = "N;/path" \n; \n; where N is an integer. Instead of storing all the session files in \n; /path, what this will do is use subdirectories N-levels deep, and \n; store the session data in those directories. This is useful if \n; your OS has problems with many files in one directory, and is \n; a more efficient layout for servers that handle many sessions. \n; \n; NOTE 1: PHP will not create this directory structure automatically. \n; You can use the script in the ext/session dir for that purpose. \n; NOTE 2: See the section on garbage collection below if you choose to \n; use subdirectories for session storage \n; \n; The file storage module creates files using mode 600 by default. \n; You can change that by using \n; \n; session.save_path = "N;MODE;/path" \n; \n; where MODE is the octal representation of the mode. Note that this \n; does not overwrite the process's umask. \n; http://php.net/session.save-path \nsession.save_path="C:\\xampp\\tmp" \n \n; Whether to use strict session mode. \n; Strict session mode does not accept an uninitialized session ID, and \n; regenerates the session ID if the browser sends an uninitialized session ID. \n; Strict mode protects applications from session fixation via a session adoption \n; vulnerability. It is disabled by default for maximum compatibility, but \n; enabling it is encouraged. \n; https://wiki.php.net/rfc/strict_sessions \nsession.use_strict_mode=0 \n \n; Whether to use cookies. \n; http://php.net/session.use-cookies \nsession.use_cookies=1 \n \n; http://php.net/session.cookie-secure \n;session.cookie_secure = \n \n; This option forces PHP to fetch and use a cookie for storing and maintaining \n; the session id. We encourage this operation as it's very helpful in combating \n; session hijacking when not specifying and managing your own session id. It is \n; not the be-all and end-all of session hijacking defense, but it's a good start. \n; http://php.net/session.use-only-cookies \nsession.use_only_cookies=1 \n \n; Name of the session (used as cookie name). \n; http://php.net/session.name \nsession.name=PHPSESSID \n \n; Initialize session on request startup. \n; http://php.net/session.auto-start \nsession.auto_start=0 \n \n; Lifetime in seconds of cookie or, if 0, until browser is restarted. \n; http://php.net/session.cookie-lifetime \nsession.cookie_lifetime=0 \n \n; The path for which the cookie is valid. \n; http://php.net/session.cookie-path \nsession.cookie_path=/ \n \n; The domain for which the cookie is valid. \n; http://php.net/session.cookie-domain \nsession.cookie_domain= \n \n; Whether or not to add the httpOnly flag to the cookie, which makes it \n; inaccessible to browser scripting languages such as JavaScript. \n; http://php.net/session.cookie-httponly \nsession.cookie_httponly= \n \n; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF) \n; Current valid values are "Strict", "Lax" or "None". When using "None", \n; make sure to include the quotes, as `none` is interpreted like `false` in ini files. \n; https://tools.ietf.org/html/draft-west-first-party-cookies-07 \nsession.cookie_samesite= \n \n; Handler used to serialize data. php is the standard serializer of PHP. \n; http://php.net/session.serialize-handler \nsession.serialize_handler=php \n \n; Defines the probability that the 'garbage collection' process is started on every \n; session initialization. The probability is calculated by using gc_probability/gc_divisor, \n; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. \n; Default Value: 1 \n; Development Value: 1 \n; Production Value: 1 \n; http://php.net/session.gc-probability \nsession.gc_probability=1 \n \n; Defines the probability that the 'garbage collection' process is started on every \n; session initialization. The probability is calculated by using gc_probability/gc_divisor, \n; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. \n; For high volume production servers, using a value of 1000 is a more efficient approach. \n; Default Value: 100 \n; Development Value: 1000 \n; Production Value: 1000 \n; http://php.net/session.gc-divisor \nsession.gc_divisor=1000 \n \n; After this number of seconds, stored data will be seen as 'garbage' and \n; cleaned up by the garbage collection process. \n; http://php.net/session.gc-maxlifetime \nsession.gc_maxlifetime=1440 \n \n; NOTE: If you are using the subdirectory option for storing session files \n; (see session.save_path above), then garbage collection does *not* \n; happen automatically. You will need to do your own garbage \n; collection through a shell script, cron entry, or some other method. \n; For example, the following script is the equivalent of setting \n; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): \n; find /path/to/sessions -cmin +24 -type f | xargs rm \n \n; Check HTTP Referer to invalidate externally stored URLs containing ids. \n; HTTP_REFERER has to contain this substring for the session to be \n; considered as valid. \n; http://php.net/session.referer-check \nsession.referer_check= \n \n; Set to {nocache,private,public,} to determine HTTP caching aspects \n; or leave this empty to avoid sending anti-caching headers. \n; http://php.net/session.cache-limiter \nsession.cache_limiter=nocache \n \n; Document expires after n minutes. \n; http://php.net/session.cache-expire \nsession.cache_expire=180 \n \n; trans sid support is disabled by default. \n; Use of trans sid may risk your users' security. \n; Use this option with caution. \n; - User may send URL contains active session ID \n; to other person via. email/irc/etc. \n; - URL that contains active session ID may be stored \n; in publicly accessible computer. \n; - User may access your site with the same session ID \n; always using URL stored in browser's history or bookmarks. \n; http://php.net/session.use-trans-sid \nsession.use_trans_sid=0 \n \n; Set session ID character length. This value could be between 22 to 256. \n; Shorter length than default is supported only for compatibility reason. \n; Users should use 32 or more chars. \n; http://php.net/session.sid-length \n; Default Value: 32 \n; Development Value: 26 \n; Production Value: 26 \nsession.sid_length=26 \n \n; The URL rewriter will look for URLs in a defined set of HTML tags. \n;
is special; if you include them here, the rewriter will \n; add a hidden field with the info which is otherwise appended \n; to URLs. tag's action attribute URL will not be modified \n; unless it is specified. \n; Note that all valid entries require a "=", even if no value follows. \n; Default Value: "a=href,area=href,frame=src,form=" \n; Development Value: "a=href,area=href,frame=src,form=" \n; Production Value: "a=href,area=href,frame=src,form=" \n; http://php.net/url-rewriter.tags \nsession.trans_sid_tags="a=href,area=href,frame=src,form=" \n \n; URL rewriter does not rewrite absolute URLs by default. \n; To enable rewrites for absolute paths, target hosts must be specified \n; at RUNTIME. i.e. use ini_set() \n; tags is special. PHP will check action attribute's URL regardless \n; of session.trans_sid_tags setting. \n; If no host is defined, HTTP_HOST will be used for allowed host. \n; Example value: php.net,www.php.net,wiki.php.net \n; Use "," for multiple hosts. No spaces are allowed. \n; Default Value: "" \n; Development Value: "" \n; Production Value: "" \n;session.trans_sid_hosts="" \n \n; Define how many bits are stored in each character when converting \n; the binary hash data to something readable. \n; Possible values: \n; 4 (4 bits: 0-9, a-f) \n; 5 (5 bits: 0-9, a-v) \n; 6 (6 bits: 0-9, a-z, A-Z, "-", ",") \n; Default Value: 4 \n; Development Value: 5 \n; Production Value: 5 \n; http://php.net/session.hash-bits-per-character \nsession.sid_bits_per_character=5 \n \n; Enable upload progress tracking in $_SESSION \n; Default Value: On \n; Development Value: On \n; Production Value: On \n; http://php.net/session.upload-progress.enabled \n;session.upload_progress.enabled = On \n \n; Cleanup the progress information as soon as all POST data has been read \n; (i.e. upload completed). \n; Default Value: On \n; Development Value: On \n; Production Value: On \n; http://php.net/session.upload-progress.cleanup \n;session.upload_progress.cleanup = On \n \n; A prefix used for the upload progress key in $_SESSION \n; Default Value: "upload_progress_" \n; Development Value: "upload_progress_" \n; Production Value: "upload_progress_" \n; http://php.net/session.upload-progress.prefix \n;session.upload_progress.prefix = "upload_progress_" \n \n; The index name (concatenated with the prefix) in $_SESSION \n; containing the upload progress information \n; Default Value: "PHP_SESSION_UPLOAD_PROGRESS" \n; Development Value: "PHP_SESSION_UPLOAD_PROGRESS" \n; Production Value: "PHP_SESSION_UPLOAD_PROGRESS" \n; http://php.net/session.upload-progress.name \n;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS" \n \n; How frequently the upload progress should be updated. \n; Given either in percentages (per-file), or in bytes \n; Default Value: "1%" \n; Development Value: "1%" \n; Production Value: "1%" \n; http://php.net/session.upload-progress.freq \n;session.upload_progress.freq = "1%" \n \n; The minimum delay between updates, in seconds \n; Default Value: 1 \n; Development Value: 1 \n; Production Value: 1 \n; http://php.net/session.upload-progress.min-freq \n;session.upload_progress.min_freq = "1" \n \n; Only write session data when session data is changed. Enabled by default. \n; http://php.net/session.lazy-write \n;session.lazy_write = On \n \n[Assertion] \n; Switch whether to compile assertions at all (to have no overhead at run-time) \n; -1: Do not compile at all \n; 0: Jump over assertion at run-time \n; 1: Execute assertions \n; 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) \n; Default Value: 1 \n; Development Value: 1 \n; Production Value: -1 \n; http://php.net/zend.assertions \nzend.assertions=1 \n \n; Assert(expr); active by default. \n; http://php.net/assert.active \n;assert.active = On \n \n; Throw an AssertionError on failed assertions \n; http://php.net/assert.exception \n;assert.exception = On \n \n; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active) \n; http://php.net/assert.warning \n;assert.warning = On \n \n; Don't bail out by default. \n; http://php.net/assert.bail \n;assert.bail = Off \n \n; User-function to be called if an assertion fails. \n; http://php.net/assert.callback \n;assert.callback = 0 \n \n; Eval the expression with current error_reporting(). Set to true if you want \n; error_reporting(0) around the eval(). \n; http://php.net/assert.quiet-eval \n;assert.quiet_eval = 0 \n \n[COM] \n; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs \n; http://php.net/com.typelib-file \n;com.typelib_file = \n \n; allow Distributed-COM calls \n; http://php.net/com.allow-dcom \n;com.allow_dcom = true \n \n; autoregister constants of a component's typlib on com_load() \n; http://php.net/com.autoregister-typelib \n;com.autoregister_typelib = true \n \n; register constants casesensitive \n; http://php.net/com.autoregister-casesensitive \n;com.autoregister_casesensitive = false \n \n; show warnings on duplicate constant registrations \n; http://php.net/com.autoregister-verbose \n;com.autoregister_verbose = true \n \n; The default character set code-page to use when passing strings to and from COM objects. \n; Default: system ANSI code page \n;com.code_page= \n \n[mbstring] \n; language for internal character representation. \n; This affects mb_send_mail() and mbstring.detect_order. \n; http://php.net/mbstring.language \n;mbstring.language = Japanese \n \n; Use of this INI entry is deprecated, use global internal_encoding instead. \n; internal/script encoding. \n; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*) \n; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. \n; The precedence is: default_charset < internal_encoding < iconv.internal_encoding \n;mbstring.internal_encoding = \n \n; Use of this INI entry is deprecated, use global input_encoding instead. \n; http input encoding. \n; mbstring.encoding_translation = On is needed to use this setting. \n; If empty, default_charset or input_encoding or mbstring.input is used. \n; The precedence is: default_charset < input_encoding < mbstring.http_input \n; http://php.net/mbstring.http-input \n;mbstring.http_input = \n \n; Use of this INI entry is deprecated, use global output_encoding instead. \n; http output encoding. \n; mb_output_handler must be registered as output buffer to function. \n; If empty, default_charset or output_encoding or mbstring.http_output is used. \n; The precedence is: default_charset < output_encoding < mbstring.http_output \n; To use an output encoding conversion, mbstring's output handler must be set \n; otherwise output encoding conversion cannot be performed. \n; http://php.net/mbstring.http-output \n;mbstring.http_output = \n \n; enable automatic encoding translation according to \n; mbstring.internal_encoding setting. Input chars are \n; converted to internal encoding by setting this to On. \n; Note: Do _not_ use automatic encoding translation for \n; portable libs/applications. \n; http://php.net/mbstring.encoding-translation \n;mbstring.encoding_translation = Off \n \n; automatic encoding detection order. \n; "auto" detect order is changed according to mbstring.language \n; http://php.net/mbstring.detect-order \n;mbstring.detect_order = auto \n \n; substitute_character used when character cannot be converted \n; one from another \n; http://php.net/mbstring.substitute-character \n;mbstring.substitute_character = none \n \n; overload(replace) single byte functions by mbstring functions. \n; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(), \n; etc. Possible values are 0,1,2,4 or combination of them. \n; For example, 7 for overload everything. \n; 0: No overload \n; 1: Overload mail() function \n; 2: Overload str*() functions \n; 4: Overload ereg*() functions \n; http://php.net/mbstring.func-overload \n;mbstring.func_overload = 0 \n \n; enable strict encoding detection. \n; Default: Off \n;mbstring.strict_detection = On \n \n; This directive specifies the regex pattern of content types for which mb_output_handler() \n; is activated. \n; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\\+xml) \n;mbstring.http_output_conv_mimetype= \n \n; This directive specifies maximum stack depth for mbstring regular expressions. It is similar \n; to the pcre.recursion_limit for PCRE. \n; Default: 100000 \n;mbstring.regex_stack_limit=100000 \n \n; This directive specifies maximum retry count for mbstring regular expressions. It is similar \n; to the pcre.backtrack_limit for PCRE. \n; Default: 1000000 \n;mbstring.regex_retry_limit=1000000 \n \n[gd] \n; Tell the jpeg decode to ignore warnings and try to create \n; a gd image. The warning will then be displayed as notices \n; disabled by default \n; http://php.net/gd.jpeg-ignore-warning \n;gd.jpeg_ignore_warning = 1 \n \n[exif] \n; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. \n; With mbstring support this will automatically be converted into the encoding \n; given by corresponding encode setting. When empty mbstring.internal_encoding \n; is used. For the decode settings you can distinguish between motorola and \n; intel byte order. A decode setting cannot be empty. \n; http://php.net/exif.encode-unicode \n;exif.encode_unicode = ISO-8859-15 \n \n; http://php.net/exif.decode-unicode-motorola \n;exif.decode_unicode_motorola = UCS-2BE \n \n; http://php.net/exif.decode-unicode-intel \n;exif.decode_unicode_intel = UCS-2LE \n \n; http://php.net/exif.encode-jis \n;exif.encode_jis = \n \n; http://php.net/exif.decode-jis-motorola \n;exif.decode_jis_motorola = JIS \n \n; http://php.net/exif.decode-jis-intel \n;exif.decode_jis_intel = JIS \n \n[Tidy] \n; The path to a default tidy configuration file to use when using tidy \n; http://php.net/tidy.default-config \n;tidy.default_config = /usr/local/lib/php/default.tcfg \n \n; Should tidy clean and repair output automatically? \n; WARNING: Do not use this option if you are generating non-html content \n; such as dynamic images \n; http://php.net/tidy.clean-output \ntidy.clean_output=Off \n \n[soap] \n; Enables or disables WSDL caching feature. \n; http://php.net/soap.wsdl-cache-enabled \nsoap.wsdl_cache_enabled=1 \n \n; Sets the directory name where SOAP extension will put cache files. \n; http://php.net/soap.wsdl-cache-dir \nsoap.wsdl_cache_dir="/tmp" \n \n; (time to live) Sets the number of second while cached file will be used \n; instead of original one. \n; http://php.net/soap.wsdl-cache-ttl \nsoap.wsdl_cache_ttl=86400 \n \n; Sets the size of the cache limit. (Max. number of WSDL files to cache) \nsoap.wsdl_cache_limit=5 \n \n[sysvshm] \n; A default size of the shared memory segment \n;sysvshm.init_mem = 10000 \n \n[ldap] \n; Sets the maximum number of open links or -1 for unlimited. \nldap.max_links=-1 \n \n[dba] \n;dba.default_handler= \n \n[opcache] \n; Determines if Zend OPCache is enabled \n;opcache.enable=1 \n \n; Determines if Zend OPCache is enabled for the CLI version of PHP \n;opcache.enable_cli=0 \n \n; The OPcache shared memory storage size. \n;opcache.memory_consumption=128 \n \n; The amount of memory for interned strings in Mbytes. \n;opcache.interned_strings_buffer=8 \n \n; The maximum number of keys (scripts) in the OPcache hash table. \n; Only numbers between 200 and 1000000 are allowed. \n;opcache.max_accelerated_files=10000 \n \n; The maximum percentage of "wasted" memory until a restart is scheduled. \n;opcache.max_wasted_percentage=5 \n \n; When this directive is enabled, the OPcache appends the current working \n; directory to the script key, thus eliminating possible collisions between \n; files with the same name (basename). Disabling the directive improves \n; performance, but may break existing applications. \n;opcache.use_cwd=1 \n \n; When disabled, you must reset the OPcache manually or restart the \n; webserver for changes to the filesystem to take effect. \n;opcache.validate_timestamps=1 \n \n; How often (in seconds) to check file timestamps for changes to the shared \n; memory storage allocation. ("1" means validate once per second, but only \n; once per request. "0" means always validate) \n;opcache.revalidate_freq=2 \n \n; Enables or disables file search in include_path optimization \n;opcache.revalidate_path=0 \n \n; If disabled, all PHPDoc comments are dropped from the code to reduce the \n; size of the optimized code. \n;opcache.save_comments=1 \n \n; Allow file existence override (file_exists, etc.) performance feature. \n;opcache.enable_file_override=0 \n \n; A bitmask, where each bit enables or disables the appropriate OPcache \n; passes \n;opcache.optimization_level=0x7FFFBFFF \n \n;opcache.dups_fix=0 \n \n; The location of the OPcache blacklist file (wildcards allowed). \n; Each OPcache blacklist file is a text file that holds the names of files \n; that should not be accelerated. The file format is to add each filename \n; to a new line. The filename may be a full path or just a file prefix \n; (i.e., /var/www/x blacklists all the files and directories in /var/www \n; that start with 'x'). Line starting with a ; are ignored (comments). \n;opcache.blacklist_filename= \n \n; Allows exclusion of large files from being cached. By default all files \n; are cached. \n;opcache.max_file_size=0 \n \n; Check the cache checksum each N requests. \n; The default value of "0" means that the checks are disabled. \n;opcache.consistency_checks=0 \n \n; How long to wait (in seconds) for a scheduled restart to begin if the cache \n; is not being accessed. \n;opcache.force_restart_timeout=180 \n \n; OPcache error_log file name. Empty string assumes "stderr". \n;opcache.error_log= \n \n; All OPcache errors go to the Web server log. \n; By default, only fatal errors (level 0) or errors (level 1) are logged. \n; You can also enable warnings (level 2), info messages (level 3) or \n; debug messages (level 4). \n;opcache.log_verbosity_level=1 \n \n; Preferred Shared Memory back-end. Leave empty and let the system decide. \n;opcache.preferred_memory_model= \n \n; Protect the shared memory from unexpected writing during script execution. \n; Useful for internal debugging only. \n;opcache.protect_memory=0 \n \n; Allows calling OPcache API functions only from PHP scripts which path is \n; started from specified string. The default "" means no restriction \n;opcache.restrict_api= \n \n; Mapping base of shared memory segments (for Windows only). All the PHP \n; processes have to map shared memory into the same address space. This \n; directive allows to manually fix the "Unable to reattach to base address" \n; errors. \n;opcache.mmap_base= \n \n; Facilitates multiple OPcache instances per user (for Windows only). All PHP \n; processes with the same cache ID and user share an OPcache instance. \n;opcache.cache_id= \n \n; Enables and sets the second level cache directory. \n; It should improve performance when SHM memory is full, at server restart or \n; SHM reset. The default "" disables file based caching. \n;opcache.file_cache= \n \n; Enables or disables opcode caching in shared memory. \n;opcache.file_cache_only=0 \n \n; Enables or disables checksum validation when script loaded from file cache. \n;opcache.file_cache_consistency_checks=1 \n \n; Implies opcache.file_cache_only=1 for a certain process that failed to \n; reattach to the shared memory (for Windows only). Explicitly enabled file \n; cache is required. \n;opcache.file_cache_fallback=1 \n \n; Enables or disables copying of PHP code (text segment) into HUGE PAGES. \n; This should improve performance, but requires appropriate OS configuration. \n;opcache.huge_code_pages=0 \n \n; Validate cached file permissions. \n;opcache.validate_permission=0 \n \n; Prevent name collisions in chroot'ed environment. \n;opcache.validate_root=0 \n \n; If specified, it produces opcode dumps for debugging different stages of \n; optimizations. \n;opcache.opt_debug_level=0 \n \n; Specifies a PHP script that is going to be compiled and executed at server \n; start-up. \n; http://php.net/opcache.preload \n;opcache.preload= \n \n; Preloading code as root is not allowed for security reasons. This directive \n; facilitates to let the preloading to be run as another user. \n; http://php.net/opcache.preload_user \n;opcache.preload_user= \n \n; Prevents caching files that are less than this number of seconds old. It \n; protects from caching of incompletely updated files. In case all file updates \n; on your site are atomic, you may increase performance by setting it to "0". \n;opcache.file_update_protection=2 \n \n; Absolute path used to store shared lockfiles (for *nix only). \n;opcache.lockfile_path=/tmp \n \n[curl] \n; A default value for the CURLOPT_CAINFO option. This is required to be an \n; absolute path. \ncurl.cainfo="C:\\xampp\\apache\\bin\\curl-ca-bundle.crt" \n \n[openssl] \n; The location of a Certificate Authority (CA) file on the local filesystem \n; to use when verifying the identity of SSL/TLS peers. Most users should \n; not specify a value for this directive as PHP will attempt to use the \n; OS-managed cert stores in its absence. If specified, this value may still \n; be overridden on a per-stream basis via the "cafile" SSL stream context \n; option. \nopenssl.cafile="C:\\xampp\\apache\\bin\\curl-ca-bundle.crt" \n \n; If openssl.cafile is not specified or if the CA file is not found, the \n; directory pointed to by openssl.capath is searched for a suitable \n; certificate. This value must be a correctly hashed certificate directory. \n; Most users should not specify a value for this directive as PHP will \n; attempt to use the OS-managed cert stores in its absence. If specified, \n; this value may still be overridden on a per-stream basis via the "capath" \n; SSL stream context option. \n;openssl.capath= \n \n[ffi] \n; FFI API restriction. Possible values: \n; "preload" - enabled in CLI scripts and preloaded files (default) \n; "false" - always disabled \n; "true" - always enabled \n;ffi.enable=preload \n \n; List of headers files to preload, wildcard patterns allowed. \n;ffi.preload= \n[Syslog] \ndefine_syslog_variables=Off \n[Session] \ndefine_syslog_variables=Off \n[Date] \ndate.timezone=Europe/Berlin \n[MySQL] \nmysql.allow_local_infile=On \nmysql.allow_persistent=On \nmysql.cache_size=2000 \nmysql.max_persistent=-1 \nmysql.max_link=-1 \nmysql.default_port=3306 \nmysql.default_socket="MySQL" \nmysql.connect_timeout=3 \nmysql.trace_mode=Off \n[Sybase-CT] \nsybct.allow_persistent=On \nsybct.max_persistent=-1 \nsybct.max_links=-1 \nsybct.min_server_severity=10 \nsybct.min_client_severity=10 \n[MSSQL] \nmssql.allow_persistent=On \nmssql.max_persistent=-1 \nmssql.max_links=-1 \nmssql.min_error_severity=10 \nmssql.min_message_severity=10 \nmssql.compatability_mode=Off \nmssql.secure_connection=Off \n