I was having the same problem, but adding each of my login accounts with the INSERT INTO command for mysql fixed it.
run mysql
use eq;
INSERT INTO account SET name='username', password='userpassword', status=200;
ie. if your user name is bob and your password is here, and you want to be a server OP, you's type:
INSERT INTO account SET name='bob', password='here', status=200;
that fixed it for me.
|