Failure in Apache+Windows basic authentication

Viewed 27

.htaccess

AuthName "Restricted Area" 
AuthType Basic 
AuthUserFile path/.htpasswd
require valid-user

.htpasswd

test:FUgb1Qdh6571o
#This tool is used to generate password file http://tools.dynamicdrive.com/password/

When Apache is running on Windows 10 and I'm trying to access folder authentication dialog appears, however it does not authenticate and does not allow to access restricted folder.

Apache error logs:

AH01617: user test: authentication failure for "/folder": Password Mismatch

Same setup works correctly when Apache is working on Ubuntu

What could be wrong? Different method of password storing?

0 Answers
Related