I just installed the server software on a test server. Easy
install. Now I tried to login with username: admin, a blank
password, and I get the "Unable to authenticate with the username/
password combination" message. Using a blank password, because the
'admin' username in the database has a blank password. So I tried to
change the password in the database using SQL:
UPDATE user SET password=PASSWORD('mypassword') WHERE
username='admin';
And logging in with that didn't work either. So I tried to change the
password in the database like so:
UPDATE user SET password='mypassword' WHERE username='admin';
Still no dice.
So I tried to create a user using SQL
INSERT INTO user VALUES(1, 'myusername', 'mypassword', 'My Name',
'
myad...@mydomain.com', 1, 0);
Still no dice, so I update the password:
UPDATE user SET password = PASSWORD('maestro') WHERE username =
'myusername';
Nothing.
So I try to create a new user through the 'sign-up' link on the
homepage, but got this error message: "Your profile submission failed.
Please check all fields and try again."
As far as I can tell, all my database settings in config.inc.php are
right. I'm stuck. Any help?