mirror of
https://github.com/apache/httpd.git
synced 2025-12-24 15:01:03 +03:00
Fixed some typos, added a section-id and did some cosmetics.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97464 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
parties. The Apache Group does not author these modules, so we
|
||||
provide no support for them. Please contact the ISAPI's author
|
||||
directly if you are experiencing problems running their ISAPI
|
||||
extention. <strong>Please <em>do not</em> post such problems to
|
||||
extension. <strong>Please <em>do not</em> post such problems to
|
||||
Apache's lists or bug reporting pages.</strong></p>
|
||||
</div><div id="quickview"><h3 class="directives">Directives</h3><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#isapiappendlogtoerrors">ISAPIAppendLogToErrors</a></li>
|
||||
<li><img alt="" src="../images/down.gif" /> <a href="#isapiappendlogtoquery">ISAPIAppendLogToQuery</a></li>
|
||||
@@ -27,23 +27,25 @@
|
||||
<li><img alt="" src="../images/down.gif" /> <a href="#isapifakeasync">ISAPIFakeAsync</a></li>
|
||||
<li><img alt="" src="../images/down.gif" /> <a href="#isapilognotsupported">ISAPILogNotSupported</a></li>
|
||||
<li><img alt="" src="../images/down.gif" /> <a href="#isapireadaheadbuffer">ISAPIReadAheadBuffer</a></li>
|
||||
</ul><h3>Topics</h3><ul id="topics"><li><img alt="" src="../images/down.gif" /> Usage</li><li><img alt="" src="../images/down.gif" /> <a href="#notes">Additional Notes</a></li><li><img alt="" src="../images/down.gif" /> <a href="#journal">Programmer's Journal</a></li></ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="section"><h2>Usage</h2> <p>In the server configuration file, use
|
||||
the <code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code> directive to
|
||||
associate ISAPI files with the <code>isapi-isa</code> handler, and map
|
||||
it to the with their file extensions. To enable any .dll file to be
|
||||
processed as an ISAPI extention, edit the httpd.conf file and add the
|
||||
following line:</p>
|
||||
<div class="example"><p><code>
|
||||
AddHandler isapi-isa .dll
|
||||
</code></p></div>
|
||||
</ul><h3>Topics</h3><ul id="topics"><li><img alt="" src="../images/down.gif" /> <a href="#usage">Usage</a></li><li><img alt="" src="../images/down.gif" /> <a href="#notes">Additional Notes</a></li><li><img alt="" src="../images/down.gif" /> <a href="#journal">Programmer's Journal</a></li></ul></div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div><div class="section"><h2><a name="usage" id="usage">Usage</a></h2>
|
||||
|
||||
<p>In the server configuration file, use
|
||||
the <code class="directive"><a href="../mod/mod_mime.html#addhandler">AddHandler</a></code> directive to
|
||||
associate ISAPI files with the <code>isapi-isa</code> handler, and map
|
||||
it to them with their file extensions. To enable any .dll file to be
|
||||
processed as an ISAPI extension, edit the httpd.conf file and add the
|
||||
following line:</p>
|
||||
<div class="example"><p><code>
|
||||
AddHandler isapi-isa .dll
|
||||
</code></p></div>
|
||||
|
||||
<p>There is no capability within the Apache server to leave a
|
||||
requested module loaded. However, you may preload and keep a
|
||||
specific module loaded by using the following syntax in your
|
||||
httpd.conf:</p>
|
||||
<div class="example"><p><code>
|
||||
ISAPICacheFile c:/WebWork/Scripts/ISAPI/mytest.dll
|
||||
</code></p></div>
|
||||
<div class="example"><p><code>
|
||||
ISAPICacheFile c:/WebWork/Scripts/ISAPI/mytest.dll
|
||||
</code></p></div>
|
||||
|
||||
<p>Whether or not you have preloaded an ISAPI extension, all
|
||||
ISAPI extensions are governed by the same permissions and
|
||||
|
||||
@@ -20,27 +20,29 @@
|
||||
parties. The Apache Group does not author these modules, so we
|
||||
provide no support for them. Please contact the ISAPI's author
|
||||
directly if you are experiencing problems running their ISAPI
|
||||
extention. <strong>Please <em>do not</em> post such problems to
|
||||
extension. <strong>Please <em>do not</em> post such problems to
|
||||
Apache's lists or bug reporting pages.</strong></p>
|
||||
</summary>
|
||||
|
||||
<section><title>Usage</title> <p>In the server configuration file, use
|
||||
the <directive module="mod_mime">AddHandler</directive> directive to
|
||||
associate ISAPI files with the <code>isapi-isa</code> handler, and map
|
||||
it to the with their file extensions. To enable any .dll file to be
|
||||
processed as an ISAPI extention, edit the httpd.conf file and add the
|
||||
following line:</p>
|
||||
<example>
|
||||
AddHandler isapi-isa .dll
|
||||
</example>
|
||||
<section id="usage"><title>Usage</title>
|
||||
|
||||
<p>In the server configuration file, use
|
||||
the <directive module="mod_mime">AddHandler</directive> directive to
|
||||
associate ISAPI files with the <code>isapi-isa</code> handler, and map
|
||||
it to them with their file extensions. To enable any .dll file to be
|
||||
processed as an ISAPI extension, edit the httpd.conf file and add the
|
||||
following line:</p>
|
||||
<example>
|
||||
AddHandler isapi-isa .dll
|
||||
</example>
|
||||
|
||||
<p>There is no capability within the Apache server to leave a
|
||||
requested module loaded. However, you may preload and keep a
|
||||
specific module loaded by using the following syntax in your
|
||||
httpd.conf:</p>
|
||||
<example>
|
||||
ISAPICacheFile c:/WebWork/Scripts/ISAPI/mytest.dll
|
||||
</example>
|
||||
<example>
|
||||
ISAPICacheFile c:/WebWork/Scripts/ISAPI/mytest.dll
|
||||
</example>
|
||||
|
||||
<p>Whether or not you have preloaded an ISAPI extension, all
|
||||
ISAPI extensions are governed by the same permissions and
|
||||
@@ -301,4 +303,4 @@ extensions to the query field</description>
|
||||
</usage>
|
||||
</directivesynopsis>
|
||||
|
||||
</modulesynopsis>
|
||||
</modulesynopsis>
|
||||
|
||||
Reference in New Issue
Block a user