<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[gOxiA=苏繁=SuFan Blog]]></title> 
<link>https://sufan.maytide.net/index.php</link> 
<description><![CDATA[gOxiA,苏繁,sufan,Microsoft MVP]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[gOxiA=苏繁=SuFan Blog]]></copyright>
<item>
<link>https://sufan.maytide.net/read.php/783.htm</link>
<title><![CDATA[PHP4中php.ini的标准配置]]></title> 
<author>gOxiA &lt;sufan_cn@msn.com&gt;</author>
<category><![CDATA[技术备忘]]></category>
<pubDate>Wed, 28 Jul 2004 04:17:27 +0000</pubDate> 
<guid>https://sufan.maytide.net/read.php/783.htm</guid> 
<description>
<![CDATA[ 
	在安装PHP4支持后，还需要更改php.ini配置文件内容，其中红色部分为必修改的。<br/><div class="code"><br/>[PHP]<br/><br/>;;;;;;;;;;;;;;;;;;;<br/>; About this file ;<br/>;;;;;;;;;;;;;;;;;;;<br/>;<br/>; This is the recommended, PHP 4-style version of the php.ini-dist file. &nbsp;It<br/>; sets some non standard settings, that make PHP more efficient, more secure,<br/>; and encourage cleaner coding.<br/>; The price is that with these settings, PHP may be incompatible with some<br/>; applications, and sometimes, more difficult to develop with. &nbsp;Using this<br/>; file is warmly recommended for production sites. &nbsp;As all of the changes from<br/>; the standard settings are thoroughly documented, you can go over each one,<br/>; and decide whether you want to use it or not.<br/>;<br/>; For general information about the php.ini file, please consult the php.ini-dist<br/>; file, included in your PHP distribution.<br/>;<br/>; This file is different from the php.ini-dist file in the fact that it features<br/>; different values for several directives, in order to improve performance, while<br/>; possibly breaking compatibility with the standard out-of-the-box behavior of<br/>; PHP 3. &nbsp;Please make sure you read what's different, and modify your scripts<br/>; accordingly, if you decide to use this file instead.<br/>;<br/>; - register_globals = Off &nbsp; &nbsp; &nbsp; &nbsp; [Security, Performance]<br/>; &nbsp; &nbsp; Global variables are no longer registered for input data (POST, GET, cookies,<br/>; &nbsp; &nbsp; environment and other server variables). &nbsp;Instead of using $foo, you must use<br/>; &nbsp; &nbsp; you can use $_REQUEST[\&quot;foo\&quot;] (includes any variable that arrives through the<br/>; &nbsp; &nbsp; request, namely, POST, GET and cookie variables), or use one of the specific<br/>; &nbsp; &nbsp; $_GET[\&quot;foo\&quot;], $_POST[\&quot;foo\&quot;], $_COOKIE[\&quot;foo\&quot;] or $_FILES[\&quot;foo\&quot;], depending<br/>; &nbsp; &nbsp; on where the input originates. &nbsp;Also, you can look at the<br/>; &nbsp; &nbsp; import_request_variables() function.<br/>; &nbsp; &nbsp; Note that register_globals is going to be depracated (i.e., turned off by<br/>; &nbsp; &nbsp; default) in the next version of PHP, because it often leads to security bugs.<br/>; &nbsp; &nbsp; Read http://php.net/manual/en/security.registerglobals.php for further<br/>; &nbsp; &nbsp; information.<br/>; - display_errors = Off &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [Security]<br/>; &nbsp; &nbsp; With this directive set to off, errors that occur during the execution of<br/>; &nbsp; &nbsp; scripts will no longer be displayed as a part of the script output, and thus,<br/>; &nbsp; &nbsp; will no longer be exposed to remote users. &nbsp;With some errors, the error message<br/>; &nbsp; &nbsp; content may expose information about your script, web server, or database<br/>; &nbsp; &nbsp; server that may be exploitable for hacking. &nbsp;Production sites should have this<br/>; &nbsp; &nbsp; directive set to off.<br/>; - log_errors = On &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[Security]<br/>; &nbsp; &nbsp; This directive complements the above one. &nbsp;Any errors that occur during the<br/>; &nbsp; &nbsp; execution of your script will be logged (typically, to your server's error log,<br/>; &nbsp; &nbsp; but can be configured in several ways). &nbsp;Along with setting display_errors to off,<br/>; &nbsp; &nbsp; this setup gives you the ability to fully understand what may have gone wrong,<br/>; &nbsp; &nbsp; without exposing any sensitive information to remote users.<br/>; - output_buffering = 4096 &nbsp; &nbsp; &nbsp; &nbsp;[Performance]<br/>; &nbsp; &nbsp; Set a 4KB output buffer. &nbsp;Enabling output buffering typically results in less<br/>; &nbsp; &nbsp; writes, and sometimes less packets sent on the wire, which can often lead to<br/>; &nbsp; &nbsp; better performance. &nbsp;The gain this directive actually yields greatly depends<br/>; &nbsp; &nbsp; on which Web server you're working with, and what kind of scripts you're using.<br/>; - register_argc_argv = Off &nbsp; &nbsp; &nbsp; [Performance]<br/>; &nbsp; &nbsp; Disables registration of the somewhat redundant $argv and $argc global<br/>; &nbsp; &nbsp; variables.<br/>; - magic_quotes_gpc = Off &nbsp; &nbsp; &nbsp; &nbsp; [Performance]<br/>; &nbsp; &nbsp; Input data is no longer escaped with slashes so that it can be sent into<br/>; &nbsp; &nbsp; SQL databases without further manipulation. &nbsp;Instead, you should use the<br/>; &nbsp; &nbsp; function addslashes() on each input element you wish to send to a database.<br/>; - variables_order = \&quot;GPCS\&quot; &nbsp; &nbsp; &nbsp; [Performance]<br/>; &nbsp; &nbsp; The environment variables are not hashed into the $HTTP_ENV_VARS[]. &nbsp;To access<br/>; &nbsp; &nbsp; environment variables, you can use getenv() instead.<br/>; - error_reporting = E_ALL &nbsp; &nbsp; &nbsp; &nbsp;[Code Cleanliness, Security(?)]<br/>; &nbsp; &nbsp; By default, PHP surpresses errors of type E_NOTICE. &nbsp;These error messages<br/>; &nbsp; &nbsp; are emitted for non-critical errors, but that could be a symptom of a bigger<br/>; &nbsp; &nbsp; problem. &nbsp;Most notably, this will cause error messages about the use<br/>; &nbsp; &nbsp; of uninitialized variables to be displayed.<br/>; - allow_call_time_pass_reference = Off &nbsp; &nbsp; [Code cleanliness]<br/>; &nbsp; &nbsp; It's not possible to decide to force a variable to be passed by reference<br/>; &nbsp; &nbsp; when calling a function. &nbsp;The PHP 4 style to do this is by making the<br/>; &nbsp; &nbsp; function require the relevant argument by reference.<br/><br/><br/>;;;;;;;;;;;;;;;;;;;;<br/>; Language Options ;<br/>;;;;;;;;;;;;;;;;;;;;<br/><br/>; Enable the PHP scripting language engine under Apache.<br/>engine = On<br/><br/>; Allow the &lt;? tag. &nbsp;Otherwise, only &lt;?php and &lt;script&gt; tags are recognized. &nbsp;<br/>; NOTE: Using short tags should be avoided when developing applications or<br/>; libraries that are meant for redistribution, or deployment on PHP<br/>; servers which are not under your control, because short tags may not<br/>; be supported on the target server. For portable, redistributable code,<br/>; be sure not to use short tags.<br/>short_open_tag = On<br/><br/>; Allow ASP-style &lt;% %&gt; tags.<br/>asp_tags = On<br/><br/>; The number of significant digits displayed in floating point numbers.<br/>precision &nbsp; &nbsp;= &nbsp;14<br/><br/>; Enforce year 2000 compliance (will cause problems with non-compliant browsers)<br/>y2k_compliance = On<br/><br/>; Output buffering allows you to send header lines (including cookies) even<br/>; after you send body content, at the price of slowing PHP's output layer a<br/>; bit. &nbsp;You can enable output buffering during runtime by calling the output<br/>; buffering functions. &nbsp;You can also enable output buffering for all files by<br/>; setting this directive to On. &nbsp;If you wish to limit the size of the buffer<br/>; to a certain size - you can use a maximum number of bytes instead of 'On', as<br/>; a value for this directive (e.g., output_buffering=4096).<br/>output_buffering = 4096<br/><br/>; You can redirect all of the output of your scripts to a function. &nbsp;For<br/>; example, if you set output_handler to \&quot;mb_output_handler\&quot;, character<br/>; encoding will be transparently converted to the specified encoding.<br/>; Setting any output handler automatically turns on output buffering.<br/>; Note: People who wrote portable scripts should not depend on this ini<br/>; &nbsp; &nbsp; &nbsp; directive. Instead, explicitly set the output handler using ob_start().<br/>; &nbsp; &nbsp; &nbsp; Using this ini directive may cause problems unless you know what script <br/>; &nbsp; &nbsp; &nbsp; is doing.<br/>; Note: You cannot use both \&quot;mb_output_handler\&quot; with \&quot;ob_iconv_handler\&quot;<br/>; &nbsp; &nbsp; &nbsp; and you cannot use both \&quot;ob_gzhandler\&quot; and \&quot;zlib.output_compression\&quot;. <br/>;output_handler =<br/><br/>; Transparent output compression using the zlib library<br/>; Valid values for this option are 'off', 'on', or a specific buffer size<br/>; to be used for compression (default is 4KB)<br/>; Note: Resulting chunk size may vary due to nature of compression. PHP <br/>; &nbsp; &nbsp; &nbsp; outputs chunks that are few handreds bytes each as a result of compression. <br/>; &nbsp; &nbsp; &nbsp; If you want larger chunk size for better performence, enable output_buffering <br/>; &nbsp; &nbsp; &nbsp; also. <br/>; Note: output_handler must be empty if this is set 'On' !!!!<br/>; &nbsp; &nbsp; &nbsp; Instead you must use zlib.output_handler.<br/>zlib.output_compression = Off<br/><br/>; You cannot specify additional output handlers if zlib.output_compression<br/>; is activated here. This setting does the same as output_handler but in<br/>; a different order.<br/>;zlib.output_handler =<br/><br/>; Implicit flush tells PHP to tell the output layer to flush itself<br/>; automatically after every output block. &nbsp;This is equivalent to calling the<br/>; PHP function flush() after each and every call to print() or echo() and each<br/>; and every HTML block. &nbsp;Turning this option on has serious performance<br/>; implications and is generally recommended for debugging purposes only.<br/>implicit_flush = Off<br/><br/>; The unserialize callback function will called (with the undefind class'<br/>; name as parameter), if the unserializer finds an undefined class<br/>; which should be instanciated.<br/>; A warning appears if the specified function is not defined, or if the<br/>; function doesn't include/implement the missing class.<br/>; So only set this entry, if you really want to implement such a <br/>; callback-function.<br/>unserialize_callback_func=<br/><br/>; When floats &amp; doubles are serialized store serialize_precision significant<br/>; digits after the floating point. The default value ensures that when floats<br/>; are decoded with unserialize, the data will remain the same.<br/>serialize_precision = 100<br/><br/>; Whether to enable the ability to force arguments to be passed by reference<br/>; at function call time. &nbsp;This method is deprecated and is likely to be<br/>; unsupported in future versions of PHP/Zend. &nbsp;The encouraged method of<br/>; specifying which arguments should be passed by reference is in the function<br/>; declaration. &nbsp;You're encouraged to try and turn this option Off and make<br/>; sure your scripts work properly with it in order to ensure they will work<br/>; with future versions of the language (you will receive a warning each time<br/>; you use this feature, and the argument will be passed by value instead of by<br/>; reference).<br/>allow_call_time_pass_reference = Off<br/><br/>;<br/>; Safe Mode<br/>;<br/>safe_mode = Off<br/><br/>; By default, Safe Mode does a UID compare check when<br/>; opening files. If you want to relax this to a GID compare,<br/>; then turn on safe_mode_gid.<br/>safe_mode_gid = Off<br/><br/>; When safe_mode is on, UID/GID checks are bypassed when<br/>; including files from this directory and its subdirectories.<br/>; (directory must also be in include_path or full path must<br/>; be used when including)<br/>safe_mode_include_dir =<br/><br/>; When safe_mode is on, only executables located in the safe_mode_exec_dir<br/>; will be allowed to be executed via the exec family of functions.<br/>safe_mode_exec_dir =<br/><br/>; Setting certain environment variables may be a potential security breach.<br/>; This directive contains a comma-delimited list of prefixes. &nbsp;In Safe Mode,<br/>; the user may only alter environment variables whose names begin with the<br/>; prefixes supplied here. &nbsp;By default, users will only be able to set<br/>; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).<br/>;<br/>; Note: &nbsp;If this directive is empty, PHP will let the user modify ANY<br/>; environment variable!<br/>safe_mode_allowed_env_vars = PHP_<br/><br/>; This directive contains a comma-delimited list of environment variables that<br/>; the end user won't be able to change using putenv(). &nbsp;These variables will be<br/>; protected even if safe_mode_allowed_env_vars is set to allow to change them.<br/>safe_mode_protected_env_vars = LD_LIBRARY_PATH<br/><br/>; open_basedir, if set, limits all file operations to the defined directory<br/>; and below. &nbsp;This directive makes most sense if used in a per-directory<br/>; or per-virtualhost web server configuration file. This directive is<br/>; *NOT* affected by whether Safe Mode is turned On or Off.<br/>;open_basedir =<br/><br/>; This directive allows you to disable certain functions for security reasons.<br/>; It receives a comma-delimited list of function names. This directive is<br/>; *NOT* affected by whether Safe Mode is turned On or Off.<br/>disable_functions =<br/><br/>; This directive allows you to disable certain classes for security reasons.<br/>; It receives a comma-delimited list of class names. This directive is<br/>; *NOT* affected by whether Safe Mode is turned On or Off.<br/>disable_classes =<br/><br/>; Colors for Syntax Highlighting mode. &nbsp;Anything that's acceptable in<br/>; &lt;font color=\&quot;??????\&quot;&gt; would work.<br/>;highlight.string &nbsp;= #DD0000<br/>;highlight.comment = #FF9900<br/>;highlight.keyword = #007700<br/>;highlight.bg &nbsp; &nbsp; &nbsp;= #FFFFFF<br/>;highlight.default = #0000BB<br/>;highlight.html &nbsp; &nbsp;= #000000<br/><br/><br/>;<br/>; Misc<br/>;<br/>; Decides whether PHP may expose the fact that it is installed on the server<br/>; (e.g. by adding its signature to the Web server header). &nbsp;It is no security<br/>; threat in any way, but it makes it possible to determine whether you use PHP<br/>; on your server or not.<br/>expose_php = On<br/><br/><br/>;;;;;;;;;;;;;;;;;;;<br/>; Resource Limits ;<br/>;;;;;;;;;;;;;;;;;;;<br/><br/>max_execution_time = 30 &nbsp; &nbsp; ; Maximum execution time of each script, in seconds<br/>max_input_time = 60; Maximum amount of time each script may spend parsing request data<br/>memory_limit = 8M &nbsp; &nbsp; &nbsp;; Maximum amount of memory a script may consume (8MB)<br/><br/><br/>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br/>; Error handling and logging ;<br/>;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;<br/><br/>; error_reporting is a bit-field. &nbsp;Or each number up to get desired error<br/>; reporting level<br/>; E_ALL &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - All errors and warnings<br/>; E_ERROR &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - fatal run-time errors<br/>; E_WARNING &nbsp; &nbsp; &nbsp; &nbsp; - run-time warnings (non-fatal errors)<br/>; E_PARSE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; - compile-time parse errors<br/>; E_NOTICE &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;- run-time notices (these are warnings which often result<br/>; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; from a bug in your code, but it's possible that it was<br/>; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; intentional (e.g., using an uninitialized variable and<br/>; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; relying on the fact it's automatically initialized to an<br/>; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; empty string)<br/>; E_CORE_ERROR &nbsp; &nbsp; &nbsp;- fatal errors that occur during PHP's initial startup<br/>; E_CORE_WARNING &nbsp; &nbsp;- warnings (non-fatal errors) that occur during PHP's<br/>; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; initial startup<br/>; E_COMPILE_ERROR &nbsp; - fatal compile-time errors<br/>; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)<br/>; E_USER_ERROR &nbsp; &nbsp; &nbsp;- user-generated error message<br/>; E_USER_WARNING &nbsp; &nbsp;- user-generated warning message<br/>; E_USER_NOTICE &nbsp; &nbsp; - user-generated notice message<br/>;<br/>; Examples:<br/>;<br/>; &nbsp; - Show all errors, except for notices<br/>;<br/>;error_reporting = E_ALL &amp; ~E_NOTICE<br/>;<br/>; &nbsp; - Show only errors<br/>;<br/>;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR<br/>;<br/>; &nbsp; - Show all errors<br/>;<br/>error_reporting &nbsp;= &nbsp;E_ALL<br/><br/>; Print out errors (as a part of the output). &nbsp;For production web sites,<br/>; you're strongly encouraged to turn this feature off, and use error logging<br/>; instead (see below). &nbsp;Keeping display_errors enabled on a production web site<br/>; may reveal security information to end users, such as file paths on your Web<br/>; server, your database schema or other information.<br/>display_errors = Off<br/><br/>; Even when display_errors is on, errors that occur during PHP's startup<br/>; sequence are not displayed. &nbsp;It's strongly recommended to keep<br/>; display_startup_errors off, except for when debugging.<br/>display_startup_errors = Off<br/><br/>; Log errors into a log file (server-specific log, stderr, or error_log (below))<br/>; As stated above, you're strongly advised to use error logging in place of<br/>; error displaying on production web sites.<br/>log_errors = On<br/><br/>; Set maximum length of log_errors. In error_log information about the source is<br/>; added. The default is 1024 and 0 allows to not apply any maximum length at all.<br/>log_errors_max_len = 1024<br/><br/>; Do not log repeated messages. Repeated errors must occur in same file on same<br/>; line until ignore_repeated_source is set true.<br/>ignore_repeated_errors = Off<br/><br/>; Ignore source of message when ignoring repeated messages. When this setting <br/>; is On you will not log errors with repeated messages from different files or<br/>; sourcelines.<br/>ignore_repeated_source = Off<br/><br/>; If this parameter is set to Off, then memory leaks will not be shown (on<br/>; stdout or in the log). This has only effect in a debug compile, and if <br/>; error reporting includes E_WARNING in the allowed list<br/>report_memleaks = On<br/><br/>; Store the last error/warning message in $php_errormsg (boolean).<br/>track_errors = Off<br/><br/>; Disable the inclusion of HTML tags in error messages.<br/>;html_errors = Off<br/><br/>; If html_errors is set On PHP produces clickable error messages that direct <br/>; to a page describing the error or function causing the error in detail.<br/>; You can download a copy of the PHP manual from http://www.php.net/docs.php <br/>; and change docref_root to the base URL of your local copy including the<br/>; leading '/'. You must also specify the file extension being used including <br/>; the dot.<br/>;docref_root = \&quot;/phpmanual/\&quot;<br/>;docref_ext = .html<br/> &nbsp;<br/>; String to output before an error message.<br/>;error_prepend_string = \&quot;&lt;font color=ff0000&gt;\&quot;<br/><br/>; String to output after an error message.<br/>;error_append_string = \&quot;&lt;/font&gt;\&quot;<br/><br/>; Log errors to specified file.<br/>;error_log = filename<br/><br/>; Log errors to syslog (Event Log on NT, not valid in Windows 95).<br/>;error_log = syslog<br/><br/><br/>;;;;;;;;;;;;;;;;;<br/>; Data Handling ;<br/>;;;;;;;;;;;;;;;;;<br/>;<br/>; Note - track_vars is ALWAYS enabled as of PHP 4.0.3<br/><br/>; The separator used in PHP generated URLs to separate arguments.<br/>; Default is \&quot;&amp;\&quot;. <br/>;arg_separator.output = \&quot;&amp;\&quot;<br/><br/>; List of separator(s) used by PHP to parse input URLs into variables.<br/>; Default is \&quot;&amp;\&quot;. <br/>; NOTE: Every character in this directive is considered as separator!<br/>;arg_separator.input = \&quot;;&amp;\&quot;<br/><br/>; This directive describes the order in which PHP registers GET, POST, Cookie,<br/>; Environment and Built-in variables (G, P, C, E &amp; S respectively, often<br/>; referred to as EGPCS or GPC). &nbsp;Registration is done from left to right, newer<br/>; values override older values.<br/>variables_order = \&quot;GPCS\&quot;<br/><br/>; Whether or not to register the EGPCS variables as global variables. &nbsp;You may<br/>; want to turn this off if you don't want to clutter your scripts' global scope<br/>; with user data. &nbsp;This makes most sense when coupled with track_vars - in which<br/>; case you can access all of the GPC variables through the $HTTP_*_VARS[],<br/>; variables.<br/>;<br/>; You should do your best to write your scripts so that they do not require<br/>; register_globals to be on; &nbsp;Using form variables as globals can easily lead<br/>; to possible security problems, if the code is not very well thought of.<br/><span style="color: red;">register_globals = On</span><br/><br/>; This directive tells PHP whether to declare the argv&amp;argc variables (that<br/>; would contain the GET information). &nbsp;If you don't use these variables, you<br/>; should turn it off for increased performance.<br/>register_argc_argv = Off<br/><br/>; Maximum size of POST data that PHP will accept.<br/>post_max_size = 100M<br/><br/>; This directive is deprecated. &nbsp;Use variables_order instead.<br/>gpc_order = \&quot;GPC\&quot;<br/><br/>; Magic quotes<br/>;<br/><br/>; Magic quotes for incoming GET/POST/Cookie data.<br/><span style="color: red;">magic_quotes_gpc = On</span><br/><br/>; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.<br/>magic_quotes_runtime = Off &nbsp; &nbsp;<br/><br/>; Use Sybase-style magic quotes (escape ' with '' instead of \').<br/>magic_quotes_sybase = Off<br/><br/>; Automatically add files before or after any PHP document.<br/>auto_prepend_file =<br/>auto_append_file =<br/><br/>; As of 4.0b4, PHP always outputs a character encoding by default in<br/>; the Content-type: header. &nbsp;To disable sending of the charset, simply<br/>; set it to be empty.<br/>;<br/>; PHP's built-in default is text/html<br/>default_mimetype = \&quot;text/html\&quot;<br/>;default_charset = \&quot;iso-8859-1\&quot;<br/><br/>; Always populate the $HTTP_RAW_POST_DATA variable. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br/>;always_populate_raw_post_data = On<br/><br/><br/>;;;;;;;;;;;;;;;;;;;;;;;;;<br/>; Paths and Directories ;<br/>;;;;;;;;;;;;;;;;;;;;;;;;;<br/><br/>; UNIX: \&quot;/path1:/path2\&quot; &nbsp;<br/>;include_path = \&quot;.:/php/includes\&quot;<br/>;<br/>; Windows: \&quot;\path1;\path2\&quot;<br/>;include_path = \&quot;.;c:\php\includes\&quot;<br/><br/>; The root of the PHP pages, used only if nonempty.<br/>; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root<br/>; if you are running php as a CGI under any web server (other than IIS)<br/>; see documentation for security issues. &nbsp;The alternate is to use the<br/>; cgi.force_redirect configuration below<br/>doc_root =<br/><br/>; The directory under which PHP opens the script using /~usernamem used only<br/>; if nonempty.<br/>user_dir =<br/><br/>; Directory in which the loadable extensions (modules) reside.<br/><span style="color: red;">extension_dir = \&quot;D:/php/extensions/\&quot;</span><br/><br/>; Whether or not to enable the dl() function. &nbsp;The dl() function does NOT work<br/>; properly in multithreaded servers, such as IIS or Zeus, and is automatically<br/>; disabled on them.<br/>enable_dl = On<br/><br/>; cgi.force_redirect is necessary to provide security running PHP as a CGI under<br/>; most web servers. &nbsp;Left undefined, PHP turns this on by default. &nbsp;You can<br/>; turn it off here AT YOUR OWN RISK<br/>; **You CAN safely turn this off for IIS, in fact, you MUST.**<br/>; cgi.force_redirect = 1<br/><br/>; if cgi.nph is enabled it will force cgi to always sent Status: 200 with<br/>; every request.<br/>; cgi.nph = 1<br/><br/>; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape <br/>; (iPlanet) web servers, you MAY need to set an environment variable name that PHP<br/>; will look for to know it is OK to continue execution. &nbsp;Setting this variable MAY<br/>; cause security issues, KNOW WHAT YOU ARE DOING FIRST.<br/>; cgi.redirect_status_env = ;<br/><br/>; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. &nbsp;PHP's<br/>; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok<br/>; what PATH_INFO is. &nbsp;For more information on PATH_INFO, see the cgi specs. &nbsp;Setting<br/>; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. &nbsp;A setting<br/>; of zero causes PHP to behave as before. &nbsp;Default is zero. &nbsp;You should fix your scripts<br/>; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.<br/>; cgi.fix_pathinfo=1<br/><br/>; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate<br/>; security tokens of the calling client. &nbsp;This allows IIS to define the<br/>; security context that the request runs under. &nbsp;mod_fastcgi under Apache<br/>; does not currently support this feature (03/17/2002)<br/>; Set to 1 if running under IIS. &nbsp;Default is zero.<br/>; fastcgi.impersonate = 1;<br/><br/>; cgi.rfc2616_headers configuration option tells PHP what type of headers to<br/>; use when sending HTTP response code. If it's set 0 PHP sends Status: header that<br/>; is supported by Apache. When this option is set to 1 PHP will send<br/>; RFC2616 compliant header.<br/>; Default is zero.<br/>;cgi.rfc2616_headers = 0 <br/><br/><br/>;;;;;;;;;;;;;;;;<br/>; File Uploads ;<br/>;;;;;;;;;;;;;;;;<br/><br/>; Whether to allow HTTP file uploads.<br/>file_uploads = On<br/><br/>; Temporary directory for HTTP uploaded files (will use system default if not<br/>; specified).<br/>;upload_tmp_dir =<br/><br/>; Maximum allowed size for uploaded files.<br/>upload_max_filesize = 100M<br/><br/><br/>;;;;;;;;;;;;;;;;;;<br/>; Fopen wrappers ;<br/>;;;;;;;;;;;;;;;;;;<br/><br/>; Whether to allow the treatment of URLs (like http:// or ftp://) as files.<br/>allow_url_fopen = On<br/><br/>; Define the anonymous ftp password (your email address)<br/>;from=\&quot;john@doe.com\&quot;<br/><br/>; Define the user agent for php to send<br/>;user_agent=\&quot;PHP\&quot;<br/><br/>; Default timeout for socket based streams (seconds)<br/>default_socket_timeout = 60<br/><br/>; If your scripts have to deal with files from Macintosh systems,<br/>; or you are running on a Mac and need to deal with files from<br/>; unix or win32 systems, setting this flag will cause PHP to<br/>; automatically detect the EOL character in those files so that<br/>; fgets() and file() will work regardless of the source of the file.<br/>; auto_detect_line_endings = Off<br/><br/><br/>;;;;;;;;;;;;;;;;;;;;;;<br/>; Dynamic Extensions ;<br/>;;;;;;;;;;;;;;;;;;;;;;<br/>;<br/>; If you wish to have an extension loaded automatically, use the following<br/>; syntax:<br/>;<br/>; &nbsp; extension=modulename.extension<br/>;<br/>; For example, on Windows:<br/>;<br/>; &nbsp; extension=msql.dll<br/>;<br/>; ... or under UNIX:<br/>;<br/>; &nbsp; extension=msql.so<br/>;<br/>; Note that it should be the name of the module only; no directory information <br/>; needs to go here. &nbsp;Specify the location of the extension with the<br/>; extension_dir directive above.<br/><br/><br/>;Windows Extensions<br/>;Note that MySQL and ODBC support is now built in, so no dll is needed for it.<br/>;<br/>;extension=php_bz2.dll<br/>;extension=php_cpdf.dll<br/>;extension=php_crack.dll<br/>;extension=php_curl.dll<br/>;extension=php_db.dll<br/>;extension=php_dba.dll<br/>;extension=php_dbase.dll<br/>;extension=php_dbx.dll<br/>;extension=php_domxml.dll<br/>;extension=php_exif.dll<br/>;extension=php_fdf.dll<br/>;extension=php_filepro.dll<br/><span style="color: red;">extension=php_gd2.dll</span><br/>;extension=php_gettext.dll<br/>;extension=php_hyperwave.dll<br/>;extension=php_iconv.dll<br/>;extension=php_ifx.dll<br/>;extension=php_iisfunc.dll<br/>;extension=php_imap.dll<br/>;extension=php_interbase.dll<br/>;extension=php_java.dll<br/>;extension=php_ldap.dll<br/>;extension=php_mbstring.dll<br/>;extension=php_mcrypt.dll<br/>;extension=php_mhash.dll<br/>;extension=php_mime_magic.dll<br/>;extension=php_ming.dll<br/>;extension=php_mssql.dll<br/>;extension=php_msql.dll<br/>;extension=php_oci8.dll<br/>;extension=php_openssl.dll<br/>;extension=php_oracle.dll<br/>;extension=php_pdf.dll<br/>;extension=php_pgsql.dll<br/>;extension=php_printer.dll<br/>;extension=php_shmop.dll<br/>;extension=php_snmp.dll<br/>;extension=php_sockets.dll<br/>;extension=php_sybase_ct.dll<br/>;extension=php_w32api.dll<br/>;extension=php_xmlrpc.dll<br/>;extension=php_xslt.dll<br/>;extension=php_yaz.dll<br/>;extension=php_zip.dll<br/><br/><br/>;;;;;;;;;;;;;;;;;;;<br/>; Module Settings ;<br/>;;;;;;;;;;;;;;;;;;;<br/><br/>[Syslog]<br/>; Whether or not to define the various syslog variables (e.g. $LOG_PID,<br/>; $LOG_CRON, etc.). &nbsp;Turning it off is a good idea performance-wise. &nbsp;In<br/>; runtime, you can define these variables by calling define_syslog_variables().<br/>define_syslog_variables &nbsp;= Off<br/><br/>[mail function]<br/>; For Win32 only.<br/>SMTP = localhost<br/>smtp_port = 25<br/><br/>; For Win32 only.<br/>;sendmail_from = me@example.com<br/><br/>; For Unix only. &nbsp;You may supply arguments as well (default: \&quot;sendmail -t -i\&quot;).<br/>;sendmail_path =<br/><br/>[Java]<br/>;java.class.path = .\php_java.jar<br/>;java.home = c:\jdk<br/>;java.library = c:\jdk\jre\bin\hotspot\jvm.dll <br/>;java.library.path = .\<br/><br/>[SQL]<br/>sql.safe_mode = Off<br/><br/>[ODBC]<br/>;odbc.default_db &nbsp; &nbsp;= &nbsp;Not yet implemented<br/>;odbc.default_user &nbsp;= &nbsp;Not yet implemented<br/>;odbc.default_pw &nbsp; &nbsp;= &nbsp;Not yet implemented<br/><br/>; Allow or prevent persistent links.<br/>odbc.allow_persistent = On<br/><br/>; Check that a connection is still valid before reuse.<br/>odbc.check_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>odbc.max_persistent = -1<br/><br/>; Maximum number of links (persistent + non-persistent). &nbsp;-1 means no limit.<br/>odbc.max_links = -1 &nbsp;<br/><br/>; Handling of LONG fields. &nbsp;Returns number of bytes to variables. &nbsp;0 means<br/>; passthru.<br/>odbc.defaultlrl = 4096 &nbsp;<br/><br/>; Handling of binary data. &nbsp;0 means passthru, 1 return as is, 2 convert to char.<br/>; See the documentation on odbc_binmode and odbc_longreadlen for an explanation<br/>; of uodbc.defaultlrl and uodbc.defaultbinmode<br/>odbc.defaultbinmode = 1 &nbsp;<br/><br/>[MySQL]<br/>; Allow or prevent persistent links.<br/>mysql.allow_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>mysql.max_persistent = -1<br/><br/>; Maximum number of links (persistent + non-persistent). &nbsp;-1 means no limit.<br/>mysql.max_links = -1<br/><br/>; Default port number for mysql_connect(). &nbsp;If unset, mysql_connect() will use<br/>; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the<br/>; compile-time value defined MYSQL_PORT (in that order). &nbsp;Win32 will only look<br/>; at MYSQL_PORT.<br/>mysql.default_port =<br/><br/>; Default socket name for local MySQL connects. &nbsp;If empty, uses the built-in<br/>; MySQL defaults.<br/>mysql.default_socket =<br/><br/>; Default host for mysql_connect() (doesn't apply in safe mode).<br/>mysql.default_host =<br/><br/>; Default user for mysql_connect() (doesn't apply in safe mode).<br/>mysql.default_user =<br/><br/>; Default password for mysql_connect() (doesn't apply in safe mode).<br/>; Note that this is generally a *bad* idea to store passwords in this file.<br/>; *Any* user with PHP access can run 'echo get_cfg_var(\&quot;mysql.default_password\&quot;)<br/>; and reveal this password! &nbsp;And of course, any users with read access to this<br/>; file will be able to reveal the password as well.<br/>mysql.default_password =<br/><br/>; Maximum time (in secondes) for connect timeout. -1 means no limimt<br/>mysql.connect_timeout = 60<br/><br/>; Trace mode. When trace_mode is active (=On), warnings for table/index scans and<br/>; SQL-Erros will be displayed.<br/>mysql.trace_mode = Off<br/><br/>[mSQL]<br/>; Allow or prevent persistent links.<br/>msql.allow_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>msql.max_persistent = -1<br/><br/>; Maximum number of links (persistent+non persistent). &nbsp;-1 means no limit.<br/>msql.max_links = -1<br/><br/>[PostgresSQL]<br/>; Allow or prevent persistent links.<br/>pgsql.allow_persistent = On<br/><br/>; Detect broken persistent links always with pg_pconnect(). <br/>; Auto reset feature requires a little overheads.<br/>pgsql.auto_reset_persistent = Off<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>pgsql.max_persistent = -1<br/><br/>; Maximum number of links (persistent+non persistent). &nbsp;-1 means no limit.<br/>pgsql.max_links = -1<br/><br/>; Ignore PostgreSQL backends Notice message or not.<br/>; Notice message logging require a little overheads.<br/>pgsql.ignore_notice = 0<br/><br/>; Log PostgreSQL backends Noitce message or not.<br/>; Unless pgsql.ignore_notice=0, module cannot log notice message.<br/>pgsql.log_notice = 0<br/><br/>[Sybase]<br/>; Allow or prevent persistent links.<br/>sybase.allow_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>sybase.max_persistent = -1<br/><br/>; Maximum number of links (persistent + non-persistent). &nbsp;-1 means no limit.<br/>sybase.max_links = -1<br/><br/>;sybase.interface_file = \&quot;/usr/sybase/interfaces\&quot;<br/><br/>; Minimum error severity to display.<br/>sybase.min_error_severity = 10<br/><br/>; Minimum message severity to display.<br/>sybase.min_message_severity = 10<br/><br/>; Compatability mode with old versions of PHP 3.0.<br/>; If on, this will cause PHP to automatically assign types to results according<br/>; to their Sybase type, instead of treating them all as strings. &nbsp;This<br/>; compatability mode will probably not stay around forever, so try applying<br/>; whatever necessary changes to your code, and turn it off.<br/>sybase.compatability_mode = Off<br/><br/>[Sybase-CT]<br/>; Allow or prevent persistent links.<br/>sybct.allow_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>sybct.max_persistent = -1<br/><br/>; Maximum number of links (persistent + non-persistent). &nbsp;-1 means no limit.<br/>sybct.max_links = -1<br/><br/>; Minimum server message severity to display.<br/>sybct.min_server_severity = 10<br/><br/>; Minimum client message severity to display.<br/>sybct.min_client_severity = 10<br/><br/>[dbx]<br/>; returned column names can be converted for compatibility reasons<br/>; possible values for dbx.colnames_case are<br/>; \&quot;unchanged\&quot; (default, if not set)<br/>; \&quot;lowercase\&quot;<br/>; \&quot;uppercase\&quot;<br/>; the recommended default is either upper- or lowercase, but<br/>; unchanged is currently set for backwards compatibility<br/>dbx.colnames_case = \&quot;lowercase\&quot;<br/><br/>[bcmath]<br/>; Number of decimal digits for all bcmath functions.<br/>bcmath.scale = 0<br/><br/>[browscap]<br/>;browscap = extra/browscap.ini<br/><br/>[Informix]<br/>; Default host for ifx_connect() (doesn't apply in safe mode).<br/>ifx.default_host =<br/><br/>; Default user for ifx_connect() (doesn't apply in safe mode).<br/>ifx.default_user =<br/><br/>; Default password for ifx_connect() (doesn't apply in safe mode).<br/>ifx.default_password =<br/><br/>; Allow or prevent persistent links.<br/>ifx.allow_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>ifx.max_persistent = -1<br/><br/>; Maximum number of links (persistent + non-persistent). &nbsp;-1 means no limit.<br/>ifx.max_links = -1<br/><br/>; If on, select statements return the contents of a text blob instead of its id.<br/>ifx.textasvarchar = 0<br/><br/>; If on, select statements return the contents of a byte blob instead of its id.<br/>ifx.byteasvarchar = 0<br/><br/>; Trailing blanks are stripped from fixed-length char columns. &nbsp;May help the<br/>; life of Informix SE users.<br/>ifx.charasvarchar = 0<br/><br/>; If on, the contents of text and byte blobs are dumped to a file instead of<br/>; keeping them in memory.<br/>ifx.blobinfile = 0<br/><br/>; NULL's are returned as empty strings, unless this is set to 1. &nbsp;In that case,<br/>; NULL's are returned as string 'NULL'.<br/>ifx.nullformat = 0<br/><br/>[Session]<br/>; Handler used to store/retrieve data.<br/>session.save_handler = files<br/><br/>; Argument passed to save_handler. &nbsp;In the case of files, this is the path<br/>; where data files are stored. Note: Windows users have to change this <br/>; variable in order to use PHP's session functions.<br/><span style="color: red;">session.save_path = c:/windows/temp</span><br/><br/>; Whether to use cookies.<br/>session.use_cookies = 1<br/><br/>; This option enables administrators to make their users invulnerable to <br/>; attacks which involve passing session ids in URLs; defaults to 0.<br/>; session.use_only_cookies = 1<br/><br/>; Name of the session (used as cookie name).<br/>session.name = PHPSESSID<br/><br/>; Initialize session on request startup.<br/>session.auto_start = 0<br/><br/>; Lifetime in seconds of cookie or, if 0, until browser is restarted.<br/>session.cookie_lifetime = 0<br/><br/>; The path for which the cookie is valid.<br/>session.cookie_path = /<br/><br/>; The domain for which the cookie is valid.<br/>session.cookie_domain =<br/><br/>; Handler used to serialize data. &nbsp;php is the standard serializer of PHP.<br/>session.serialize_handler = php<br/><br/>; Define the probability that the 'garbage collection' process is started<br/>; on every session initialization.<br/>; The probability is calculated by using gc_probability/gc_divisor,<br/>; e.g. 1/100 means there is a 1% chance that the GC process starts<br/>; on each request.<br/><br/>session.gc_probability = 1<br/>session.gc_divisor &nbsp; &nbsp; = 1000<br/><br/>; After this number of seconds, stored data will be seen as 'garbage' and<br/>; cleaned up by the garbage collection process.<br/>session.gc_maxlifetime = 1440<br/><br/>; PHP 4.2 and less have an undocumented feature/bug that allows you to<br/>; to initialize a session variable in the global scope, albeit register_globals<br/>; is disabled. &nbsp;PHP 4.3 and later will warn you, if this feature is used.<br/>; You can disable the feature and the warning seperately. At this time,<br/>; the warning is only displayed, if bug_compat_42 is enabled.<br/><br/>session.bug_compat_42 = 0<br/>session.bug_compat_warn = 1<br/><br/>; Check HTTP Referer to invalidate externally stored URLs containing ids.<br/>; HTTP_REFERER has to contain this substring for the session to be<br/>; considered as valid.<br/>session.referer_check =<br/><br/>; How many bytes to read from the file.<br/>session.entropy_length = 0<br/><br/>; Specified here to create the session id.<br/>session.entropy_file =<br/><br/>;session.entropy_length = 16<br/><br/>;session.entropy_file = /dev/urandom<br/><br/>; Set to &#123;nocache,private,public,&#125; to determine HTTP caching aspects.<br/>; or leave this empty to avoid sending anti-caching headers.<br/>session.cache_limiter = nocache<br/><br/>; Document expires after n minutes.<br/>session.cache_expire = 180<br/><br/>; trans sid support is disabled by default.<br/>; Use of trans sid may risk your users security.<br/>; Use this option with caution.<br/>; - User may send URL contains active session ID<br/>; &nbsp; to other person via. email/irc/etc.<br/>; - URL that contains active session ID may be stored<br/>; &nbsp; in publically accessible computer. <br/>; - User may access your site with the same session ID<br/>; &nbsp; always using URL stored in browser's history or bookmarks.<br/>session.use_trans_sid = 0<br/><br/>; The URL rewriter will look for URLs in a defined set of HTML tags.<br/>; form/fieldset are special; if you include them here, the rewriter will<br/>; add a hidden &lt;input&gt; field with the info which is otherwise appended<br/>; to URLs. &nbsp;If you want XHTML conformity, remove the form entry.<br/>; Note that all valid entries require a \&quot;=\&quot;, even if no value follows.<br/>url_rewriter.tags = \&quot;a=href,area=href,frame=src,input=src,form=fakeentry\&quot;<br/><br/>[MSSQL]<br/>; Allow or prevent persistent links.<br/>mssql.allow_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>mssql.max_persistent = -1<br/><br/>; Maximum number of links (persistent+non persistent). &nbsp;-1 means no limit.<br/>mssql.max_links = -1<br/><br/>; Minimum error severity to display.<br/>mssql.min_error_severity = 10<br/><br/>; Minimum message severity to display.<br/>mssql.min_message_severity = 10<br/><br/>; Compatability mode with old versions of PHP 3.0.<br/>mssql.compatability_mode = Off<br/><br/>; Connect timeout<br/>;mssql.connect_timeout = 5<br/><br/>; Query timeout<br/>;mssql.timeout = 60<br/><br/>; Valid range 0 - 2147483647. &nbsp;Default = 4096.<br/>;mssql.textlimit = 4096<br/><br/>; Valid range 0 - 2147483647. &nbsp;Default = 4096.<br/>;mssql.textsize = 4096<br/><br/>; Limits the number of records in each batch. &nbsp;0 = all records in one batch.<br/>;mssql.batchsize = 0<br/><br/>; Specify how datetime and datetim4 columns are returned<br/>; On =&gt; Returns data converted to SQL server settings<br/>; Off =&gt; Returns values as YYYY-MM-DD hh:mm:ss<br/>;mssql.datetimeconvert = On<br/><br/>; Use NT authentication when connecting to the server<br/>mssql.secure_connection = Off<br/><br/>; Specify max number of processes. Default = 25<br/>;mssql.max_procs = 25<br/><br/>[Assertion]<br/>; Assert(expr); active by default.<br/>;assert.active = On<br/><br/>; Issue a PHP warning for each failed assertion.<br/>;assert.warning = On<br/><br/>; Don't bail out by default.<br/>;assert.bail = Off<br/><br/>; User-function to be called if an assertion fails.<br/>;assert.callback = 0<br/><br/>; Eval the expression with current error_reporting(). &nbsp;Set to true if you want<br/>; error_reporting(0) around the eval().<br/>;assert.quiet_eval = 0<br/><br/>[Ingres II]<br/>; Allow or prevent persistent links.<br/>ingres.allow_persistent = On<br/><br/>; Maximum number of persistent links. &nbsp;-1 means no limit.<br/>ingres.max_persistent = -1<br/><br/>; Maximum number of links, including persistents. &nbsp;-1 means no limit.<br/>ingres.max_links = -1<br/><br/>; Default database (format: [node_id::]dbname[/srv_class]).<br/>ingres.default_database =<br/><br/>; Default user.<br/>ingres.default_user =<br/><br/>; Default password.<br/>ingres.default_password =<br/><br/>[Verisign Payflow Pro]<br/>; Default Payflow Pro server.<br/>pfpro.defaulthost = \&quot;test-payflow.verisign.com\&quot;<br/><br/>; Default port to connect to.<br/>pfpro.defaultport = 443<br/><br/>; Default timeout in seconds.<br/>pfpro.defaulttimeout = 30<br/><br/>; Default proxy IP address (if required).<br/>;pfpro.proxyaddress =<br/><br/>; Default proxy port.<br/>;pfpro.proxyport =<br/><br/>; Default proxy logon.<br/>;pfpro.proxylogon =<br/><br/>; Default proxy password.<br/>;pfpro.proxypassword =<br/><br/>[Sockets]<br/>; Use the system read() function instead of the php_read() wrapper.<br/>sockets.use_system_read = On<br/><br/>[com]<br/>; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs<br/>;com.typelib_file = <br/>; allow Distributed-COM calls<br/>;com.allow_dcom = true<br/>; autoregister constants of a components typlib on com_load()<br/>;com.autoregister_typelib = true<br/>; register constants casesensitive<br/>;com.autoregister_casesensitive = false<br/>; show warnings on duplicate constat registrations<br/>;com.autoregister_verbose = true<br/><br/>[Printer]<br/>;printer.default_printer = \&quot;\&quot;<br/><br/>[mbstring]<br/>; language for internal character representation.<br/>;mbstring.language = Japanese<br/><br/>; internal/script encoding.<br/>; Some encoding cannot work as internal encoding.<br/>; (e.g. SJIS, BIG5, ISO-2022-*)<br/>;mbstring.internal_encoding = EUC-JP<br/><br/>; http input encoding.<br/>;mbstring.http_input = auto<br/><br/>; http output encoding. mb_output_handler must be<br/>; registered as output buffer to function<br/>;mbstring.http_output = SJIS<br/><br/>; enable automatic encoding translation accoding to <br/>; mbstring.internal_encoding setting. Input chars are<br/>; converted to internal encoding by setting this to On.<br/>; Note: Do _not_ use automatic encoding translation for<br/>; &nbsp; &nbsp; &nbsp; portable libs/applications.<br/>;mbstring.encoding_translation = Off<br/><br/>; automatic encoding detection order.<br/>; auto means <br/>;mbstring.detect_order = auto<br/><br/>; substitute_character used when character cannot be converted<br/>; one from another<br/>;mbstring.substitute_character = none;<br/><br/>; overload(replace) single byte functions by mbstring functions.<br/>; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),<br/>; etc. Possible values are 0,1,2,4 or combination of them.<br/>; For example, 7 for overload everything.<br/>; 0: No overload<br/>; 1: Overload mail() function<br/>; 2: Overload str*() functions<br/>; 4: Overload ereg*() functions<br/>;mbstring.func_overload = 0<br/><br/>[FrontBase]<br/>;fbsql.allow_persistent = On<br/>;fbsql.autocommit = On<br/>;fbsql.default_database = <br/>;fbsql.default_database_password =<br/>;fbsql.default_host =<br/>;fbsql.default_password =<br/>;fbsql.default_user = \&quot;_SYSTEM\&quot;<br/>;fbsql.generate_warnings = Off<br/>;fbsql.max_connections = 128<br/>;fbsql.max_links = 128<br/>;fbsql.max_persistent = -1<br/>;fbsql.max_results = 128<br/>;fbsql.batchSize = 1000<br/><br/>[Crack]<br/>; Modify the setting below to match the directory location of the cracklib<br/>; dictionary files. &nbsp;Include the base filename, but not the file extension.<br/>; crack.default_dictionary = \&quot;c:\php\lib\cracklib_dict\&quot;<br/><br/>[exif]<br/>; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. <br/>; With mbstring support this will automatically be converted into the encoding<br/>; given by corresponding encode setting. When empty mbstring.internal_encoding <br/>; is used. For the decode settings you can distinguish between motorola and <br/>; intel byte order. A decode setting cannot be empty.<br/>;exif.encode_unicode = ISO-8859-15<br/>;exif.decode_unicode_motorola = UCS-2BE<br/>;exif.decode_unicode_intel &nbsp; &nbsp;= UCS-2LE<br/>;exif.encode_jis = <br/>;exif.decode_jis_motorola = JIS<br/>;exif.decode_jis_intel &nbsp; &nbsp;= JIS<br/></div>
]]>
</description>
</item>
</channel>
</rss>