- INI docs

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@232729 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Michael Wallner 2007-03-27 13:08:17 +00:00
parent 986a0388df
commit 57d5f77e18

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="http.configuration">
<refnamediv>
<refname>Configuration</refname>
@ -27,105 +27,145 @@
<entry>http.etag.mode</entry>
<entry>"MD5"</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
The hashing algorithm used to generate the ETag. MD5, SHA1, and CRC32
are always available. If the <link linkend="ref.hash">hash</link>
xtension is enabled, any hashing algorithms this extension provides
are available, too.
</entry>
</row>
<row>
<entry>http.log.cache</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
The path (or stream wrapper url) to a log file in which to write successful cache hits.
</entry>
</row>
<row>
<entry>http.log.redirect</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
The path (or stream wrapper url) to a log file in which to write redirects.
</entry>
</row>
<row>
<entry>http.log.not_found</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
The path (or stream wrapper url) to a log file in which to write "file not found" errors.
</entry>
</row>
<row>
<entry>http.log.allowed_methods</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
The path (or stream wrapper url) to a log file in which to write "allowed methods" violations.
</entry>
</row>
<row>
<entry>http.log.composite</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
The path (or stream wrapper url) to a log file in which to write all events.
</entry>
</row>
<row>
<entry>http.request.methods.allowed</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
Allowed request methods. If a client issues a request with a request method
other than listed here, PHP exits with a status of "405 Method not allowed".
</entry>
</row>
<row>
<entry>http.request.methods.custom</entry>
<entry>""</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry></entry>
<entry>
Custom request methods. If you want to use any non-standard request methods,
you can register them with this INI setting or <function>http_request_method_register</function>.
</entry>
</row>
<row>
<entry>http.send.inflate.start_auto</entry>
<entry>"0"</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry></entry>
<entry>
Whether to automatically start the inflate output handler.
</entry>
</row>
<row>
<entry>http.send.inflate.start_flags</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
Initialization settings for the inflate output handler.
</entry>
</row>
<row>
<entry>http.send.deflate.start_auto</entry>
<entry>"0"</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry></entry>
<entry>
Whether to automatically start the deflate output handler.
</entry>
</row>
<row>
<entry>http.send.deflate.start_flags</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
Initialization settings for the deflate output handler.
See <link linkend="http.constants.deflate">deflate constants</link>.
</entry>
</row>
<row>
<entry>http.send.not_found_404</entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
Whether to automatically send "404 Not found", if http_send_file()
was not able to find the specified file.
</entry>
</row>
<row>
<entry>http.only_exceptions</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
Whether all notices/warnings/errors should be thrown as exceptions.
</entry>
</row>
<row>
<entry>http.force_exit</entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
<entry></entry>
<entry>
Each occasion where "exits with a status of..." is mentioned, usually causes
the halt of the scripting engine. Disable this option if you alternatively
want to start a discarding (dev/null) output handler and continue script
execution.
</entry>
</row>
</tbody>