Hi
 
    I am using mod_auth_mysql and when i tried to include the following lines below in my httpd.conf file i got an error saying Invalid command 'Auth_MYSQL', perhaps mis-spelled or defined by a
module.Then i refered to the vsdadm faq in http://www.fubra.com/vsdfaq/index.html#tools and there it says that you should include the following lines in /etc/httpd/conf/auth_mysql/mod_auth_mysql.conf file. So can anybody give me an idea where should i include the following lines and how to configure it.
 
Thanks in advance
 
Arunav Mandal.
 
<VirtualHost xxx.xxx.xx.xx>
ServerName xxx.xxx.xx.xx
DocumentRoot /home/httpd/docs
<Location /vsdadm>
        AllowOverRide AuthConfig
        Auth_MYSQL On
        Auth_MySQL_DB vsdadmsite
        Auth_MySQL_Password_Table siteusers
        Auth_MySQL_Username_Field id
        Auth_MySQL_Password_Field passwd
        Auth_MySQL_Empty_Passwords Off
        Auth_MySQL_Encrypted_Passwords On
        Auth_MySQL_Encryption_Types Plaintext
        AuthName "vsdadm center"
        AuthType Basic
        require valid-user
</Location>
</VirtualHost>

Reply via email to