Mein Name ist Frank, ich versuche gerade auf mein phpBB3 eine htaccess so zu konfigurieren dass wenn man versucht auf die startseite zu gehen erstmal einen Username und password in einer Windows Prompt box bekommt wie hier beschrieben:
http://tools.dynamicdrive.com/password/ oben unter Example: Click here. (Username: user Password: test) könnt ihr euch mal anschauen wie es aussieht wenns funktioniert.
Bei mir trittleider das folgende Problem auf:
Es kommt die Abfrage und ich gebe dann den richtigen username und das richtige Passwort ein jedoch kommt dann diese Seite:
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@domain and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
--------------------------------------------------------------------------------
Apache Server at Domain.com Port 80
Habt ihr eine Ahnung was falsch ist?
Hier die Versionen an htaccess die ich versucht habe:
Mit dieser ging es EINMALIG die passwort abfrage zu bekommen
Code: Alles auswählen
AuthName "Restricted Area"
AuthType Basic
AuthUserFile /Web/phpBB3/.htpasswd
AuthGroupFile /dev/null
require valid-user
Code: Alles auswählen
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
AuthName "Restricted Area"
AuthType Basic
AuthUserFile /Web/phpBB3/.htpasswd
AuthGroupFile /dev/null
require valid-user
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
Code: Alles auswählen
AuthName "Restricted Area"
AuthType Basic
AuthUserFile /Web/phpBB3/.htpasswd
AuthGroupFile /dev/null
<Files /Web/phpBB3/index.php>
require valid-user
</Files>
Code: Alles auswählen
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
AuthName "Restricted Area"
AuthType Basic
AuthUserFile /Web/phpBB3/.htpasswd
AuthGroupFile /dev/null
<Files /Web/phpBB3/index.php>
require valid-user
</Files
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
Ich wäre euch sehr dankbar wenn ihr mir helfen könntet.
MfG Frank