[Tue May 29 13:23:44 2001] [error] MySQL query failed: select passwd
from siteusers where id='testname'
this error is just telling you it cannot get the data from the table to
match your query
[Tue May 29 13:23:44 2001] [error] MySQL failure reason: Access denied
for user: '@localhost' to database 'vsdadmsite'
this error is telling you why - and the error is saying that anaonymous user
(nothing before localhost) cannot access this database - so check to make
sure you have added root (or whoever) as the database username in either the
script or the mysql.conf or whatever you are using for the database
connection string - and make sure you have added a password for root in
mysql set up. As default mysql allows anonymous access but with no
privileges
Gary