It appears that somewhere you have set the username eq for your database...
more then likely it is in your minilogin.ini
just check in there and see what the username and password is. you can change it or you can add that user to ur data base.
personally I have seperate users because its a little bit more secure that way
EQ - has all access to my everquest database.
to set this open up a command prompt:
and type
then your screen should look like this:
Code:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.0.37-community-nt MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
then type:
Code:
grant all privileges on ax_peq to eq@'%';
note: my database is named ax_peq
then to change the password:
Code:
set password for eq@'%'=password('eq');
and of course subsitute username and password where applicable.
to test exit mysql and try logging in with eq (mysql -u eq -p) and entering the password.
--hnath