|
please take a look over my installation of
VSDWebAdmin1.4.5
i work on a development server and have no
nameserver installed
----WHEN POINTING TO IP Adress of
superdepot.de http://62.146.42.19/vsdadm/vsdadm
i get the Authentification Screen and give the User
and Pass which i specified in
vsdadmsite "testname" "testpasswd"
THEN I GET INTERNAl SERVER ERROR
500
0) i install mod_auth_mysql-2.20wfn.rpm with rpm
-Uvh --root /home/vsd/vs/superdepot
directly to an VirtualServer
1) then i add to the httpd.conf of this
VS
LoadModule auth_mysql_module
/usr/lib/apache/mod_auth_mysql.so
AddModule mod_auth_mysql.c <VirtualHost superdepot.de>
ServerName superdepot.de DocumentRoot /home/httpd/docs <Location /vsdadm/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 Off Auth_MySQL_Encryption_Types Plaintext AuthName "vsdadm center" AuthType Basic require valid-user </Location>
</VirtualHost> 2) in dblib:
$host = "localhost"; // <----------------- db
server
$user = "root"; // <------------------ mysql username/password $pwd = "nobody"; $db = "vsdadmsite"; // <----------------- db name 3) in vsdadmsite DB i have insert
insert into vs values
(null,'superdepot','superdepot.de','localhost.localdomain','62.146.42.19','VS',now(),'LIVE')
;
|
