It is looking for an account/password pair from the account table. If your account doesn't have a password assigned use something like this to set one:
UPDATE account SET PASSWORD=MD5("password") WHERE NAME="admin"
You also have to have a status of 100 or higher.
|