~ubuntu-branches/ubuntu/hardy/apache2/hardy-proposed

« back to all changes in this revision

Viewing changes to docs/manual/mod/mod_auth_digest.html.en

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2008-01-17 20:27:56 UTC
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20080117202756-hv38rjknhwa2ilwi
Tags: upstream-2.2.8
ImportĀ upstreamĀ versionĀ 2.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
103
103
<div class="section">
104
104
<h2><a name="msie" id="msie">Working with MS Internet Explorer</a></h2>
105
 
    <p>The Digest authentication implementation in current Internet
106
 
    Explorer for Windows implementations has known issues, namely that
107
 
    <code>GET</code> requests with a query string are not RFC compliant.
 
105
    <p>The Digest authentication implementation in previous Internet
 
106
    Explorer for Windows versions (5 and 6) had issues, namely that
 
107
    <code>GET</code> requests with a query string were not RFC compliant.
108
108
    There are a few ways to work around this issue.</p>
109
109
 
110
110
    <p>
118
118
    <code>AuthDigestEnableQueryStringHack</code> environment variable.
119
119
    If <code>AuthDigestEnableQueryStringHack</code> is set for the
120
120
    request, Apache will take steps to work around the MSIE bug and
121
 
    remove the request URI from the digest comparison.  Using this
 
121
    remove the query string from the digest comparison.  Using this
122
122
    method would look similar to the following.</p>
123
123
 
124
124
    <div class="example"><h3>Using Digest Authentication with MSIE:</h3><p><code>
125
125
    BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On
126
126
    </code></p></div>
127
127
 
 
128
    <p>This workaround is not necessary for MSIE 7, though enabling it does
 
129
    not cause any compatibility issues or significant overhead.</p>
 
130
 
128
131
    <p>See the <code class="directive"><a href="../mod/mod_setenvif.html#browsermatch">BrowserMatch</a></code>
129
132
    directive for more details on conditionally setting environment
130
133
    variables</p>