Apache - Autenticacion basica en Apache

 
Vista:

Autenticacion basica en Apache

Publicado por Mac (1 intervención) el 02/07/2006 15:45:10
Buenas, acabo de instalar apache y estoy configurando la autenticacion basica, creo que la tengo bien pero cada vez que intento acceder al sitio me pide la contraseña y el usuario una y otra vez y no me deja ver el sito, y el usuario y contraseña estan bien puestos (los hice yo).

Esta es la configuracion que tengo:

En httpd.conf -->

#
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName htaccess

-->

# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
#
<Files ~ "^\ht">
Order allow,deny
Deny from all
Satisfy All
</Files>

-->

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/Documents and Settings/Mc Gregor/Mis documentos/Webs/Servidor HTTP/">

#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
Options Indexes FollowSymLinks MultiViews

#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#

AllowOverride None

#
# Controls who can get stuff from this server.
#

AllowOverride AuthConfig
</Directory>
-----------------------------------------------------------------------------------------------------------------------------------

El archivo de contraseñas se llama "pass" y esta en el directorio "bin" de la instalacion de apache, el archivo que indica el directorio a proteger se llama "htaccess" y esta en "C:/Documents and Settings/Mc Gregor/Mis documentos/Webs/Servidor HTTP" y tiene esta configuracion:

AuthType Basic
AuthName "Servidor de Mac: Prohibido el paso"
AuthUserFile "C:/Programas/Internet/Apache group/Apache/bin/pass"
Require Valid-user
-----------------------------------------------------------------------------------------------------------------------------------

Bien, mi pregunta es ¿por que aun poniendo un usuario y contraseña correcto no hace mas que pedirmelos una y otra y otra y al final no me deja entrar?

P.D. Gracias a todos por su tiempo y por molestarse en leer este post
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder