Probleme mit Authentifizierung

reini

Registered User
Hallo.

Seitdem ich Xampp 1.5.1 (mit Apache 2.2.0) auf Windows XP installiert habe, funktioniert die Autologin-Funktionalität nicht mehr.
Die bisherige Xampp-Version 1.4.12 lief fehlerfrei.

Auch nach Aufspielen der neusten Version des Moduls: mod_auth_sspi/1.0.4 (Source: http://www.gknw.at/development/apache/httpd-2.0/win32/modules/ ) war keine keine automatische Authentifizierung möglich.

Im Browser erschien folgende Fehlermeldung:

Code:
Authorization Required 
This server could not verify that you are authorized to access the document 
requested. Either you supplied the wrong credentials (e.g., bad password), 
or your browser doesn't understand how to supply the credentials required. 

Additionally, a 401 Authorization Required error was encountered while 
trying to use an ErrorDocument to handle the 
request.

Im error.log war folgendes dokumentiert:
Code:
[] [notice] Apache/2.2.0 (Win32) DAV/2 mod_autoindex_color mod_auth_sspi/1.0.4 PHP/5.1.1 configured -- resuming normal operations 

[] [error] [client 127.0.0.1] (OS 87)Falscher Parameter. : authentication failure for "/error/HTTP_UNAUTHORIZED.html.var": user unknown, reason: cannot generate context

Die Eintragungen in der Konfigurationsdatei (httpd.conf ) lauten folgendermaßen:
Code:
.... 
LoadModule sspi_auth_module modules/mod_auth_sspi.so

# Configuration for mod_auth_sspi
<IfModule mod_auth_sspi.c>
<Location /protected/>
AuthName "A Protected Place"
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic On
SSPIBasicPreferred On
require valid-user
</Location>
</IfModule>
# End of mod_auth_sspi.
# ***
Code:
<Directory />
    Options FollowSymLinks
    AllowOverride None

# *** NT-Authentifizierung
    AuthName "Bitte anmelden!"
    AuthType SSPI
    SSPIAuth On
    SSPIAuthoritative On
    require valid-user
</Directory>
Habt Ihr eine Idee wie das Problem zu lösen ist ?
Gibt es jemanden, bei dem das Autologin auf dem Apache 2.2 funktioniert ?



Viele Grüße und vielen Dank im voraus
reini

MOD : Bitte CODE Tags verwenden.
 
Last edited by a moderator:
Back
Top