When a user login on my web page they are asked to athenicate twice.
Here is the script:


<Directory /my/directory>
    RewriteEngine        on
    RewriteCond          %{HTTPS} != on
    RewriteRule            ^/(.*) $ https://%{SERVER_NAME}/$1 [R,L]

    SSLVerifyClient     none
    SSLVerifyDepth    1
    SSLOptions           +FakeBasicAuth +StrictRequire

    Satisfy                    Any

    Order                     deny,allow
    Deny                       from all

    AuthName              "Basic Authenicate"
    AuthType                Basic
    PerlAuthenHandler  Apache::Auth

    Require valid-user
</Directory>

Does anyone know how to bypass the Authincation the second time?

I am running mod_ssl 2.8.2, open_ssl 0.9.6a, mod_perl 1.25, apache
1.3.19 on Solaris 8

Thanks,

John Whitnack


______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to