View Single Post
  #10  
Old 06-14-2003, 07:37 PM
wdrng
Sarnak
 
Join Date: Oct 2002
Posts: 34
Default

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.