I am running Apache 2 on CentOS 5, using mod_auth_mysql 3.0.0-3.1
I am struggling to make it work.
Apache logs are showing the error "access to /folder failed, reason: verification of user id 'user' not configured"
The user exists in the database, and I have confirmed all the database parameters in the .htaccess match what is in the database. Here is my .htaccess file:
Hello,
I am running Apache 2 on CentOS 5, using mod_auth_mysql 3.0.0-3.1
I am struggling to make it work.
Apache logs are showing the error "access to /folder failed, reason: verification of user id 'user' not configured"
The user exists in the database, and I have confirmed all the database parameters in the .htaccess match what is in the database. Here is my .htaccess file:
************************************
AuthName "Authorization Required"
AuthType Basic
AuthGroupFile /dev/null
AuthMySQLPwEncryption None
AuthMySQLHost localhost
AuthMySQLDB authtest
AuthMySQLUserTable user_auth
AuthMySQLUser user
AuthMySQLPassword password
AuthMySQLNameField user_name
AuthMySQLPasswordField user_passwd
AuthMySQLAuthoritative On
require valid-user
************************************
Can anybody tell me what is wrong here?
Regards,
Darryl G.