1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<section xml:id="http.configuration" xmlns="http://docbook.org/ns/docbook">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>HTTP Configuration Options</title>
<tgroup cols="4">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row xml:id="http.configuration.etag.mode">
<entry>http.etag.mode</entry>
<entry>"MD5"</entry>
<entry>PHP_INI_ALL</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 xml:id="http.configuration.log.cache">
<entry>http.log.cache</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
The path (or stream wrapper url) to a log file in which to write successful cache hits.
</entry>
</row>
<row xml:id="http.configuration.log.redirect">
<entry>http.log.redirect</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
The path (or stream wrapper url) to a log file in which to write redirects.
</entry>
</row>
<row xml:id="http.configuration.log.not_found">
<entry>http.log.not_found</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
The path (or stream wrapper url) to a log file in which to write "file not found" errors.
</entry>
</row>
<row xml:id="http.configuration.log.allowed_methods">
<entry>http.log.allowed_methods</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
The path (or stream wrapper url) to a log file in which to write "allowed methods" violations.
</entry>
</row>
<row xml:id="http.configuration.log.composite">
<entry>http.log.composite</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</entry>
<entry>
The path (or stream wrapper url) to a log file in which to write all events.
</entry>
</row>
<row xml:id="http.configuration.request.methods.allowed">
<entry>http.request.methods.allowed</entry>
<entry>""</entry>
<entry>PHP_INI_ALL</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".
&see.http.configuration.force_exit;
</entry>
</row>
<row xml:id="http.configuration.request.methods.custom">
<entry>http.request.methods.custom</entry>
<entry>""</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</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 xml:id="http.configuration.request.datashare.cookie">
<entry>http.request.datashare.cookie</entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
Whether the global <classname>HttpRequestDataShare</classname> should by default share cookie information.
</entry>
</row>
<row xml:id="http.configuration.request.datashare.dns">
<entry>http.request.datashare.dns</entry>
<entry>"1"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
Whether the global <classname>HttpRequestDataShare</classname> should by default share name lookup information.
</entry>
</row>
<row xml:id="http.configuration.request.datashare.ssl">
<entry>http.request.datashare.ssl</entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
Whether the global <classname>HttpRequestDataShare</classname> should by default share SSL session information.
This is not yet implemented in libcurl.
</entry>
</row>
<row xml:id="http.configuration.request.datashare.connect">
<entry>http.request.datashare.connect</entry>
<entry>"0"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
Whether the global <classname>HttpRequestDataShare</classname> should by default share connect information.
This is not yet implemented in libcurl.
</entry>
</row>
<row xml:id="http.configuration.persistent.handles.limit">
<entry>http.persistent.handles.limit</entry>
<entry>"-1"</entry>
<entry>PHP_INI_SYSTEM</entry>
<entry>
The maximum amount of persistent handles to keep alive.
</entry>
</row>
<row xml:id="http.configuration.persistent.handles.ident">
<entry>http.persistent.handles.ident</entry>
<entry>"GLOBAL"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
The ident of persistent handles.
</entry>
</row>
<row xml:id="http.configuration.send.inflate.start_auto">
<entry>http.send.inflate.start_auto</entry>
<entry>"0"</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry>
Whether to automatically start the inflate output handler.
</entry>
</row>
<row xml:id="http.configuration.send.inflate.start_flags">
<entry>http.send.inflate.start_flags</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
Initialization settings for the inflate output handler.
</entry>
</row>
<row xml:id="http.configuration.send.deflate.start_auto">
<entry>http.send.deflate.start_auto</entry>
<entry>"0"</entry>
<entry>PHP_INI_PERDIR|PHP_INI_SYSTEM</entry>
<entry>
Whether to automatically start the deflate output handler.
</entry>
</row>
<row xml:id="http.configuration.send.deflate.start_flags">
<entry>http.send.deflate.start_flags</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
Initialization settings for the deflate output handler.
See <link linkend="http.constants.deflate">deflate constants</link>.
</entry>
</row>
<row xml:id="http.configuration.send.not_found_404">
<entry>http.send.not_found_404</entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
Whether to automatically exit with a status of "404 Not found",
if http_send_file() was not able to find the specified file.
&see.http.configuration.force_exit;
</entry>
</row>
<row xml:id="http.configuration.only_exceptions">
<entry>http.only_exceptions</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
<entry>
Whether all notices/warnings/errors should be thrown as exceptions.
</entry>
</row>
<row xml:id="http.configuration.force_exit">
<entry>http.force_exit</entry>
<entry>"1"</entry>
<entry>PHP_INI_ALL</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>
</tgroup>
</table>
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|