Quote:
Originally Posted by fdraven
figured how to set the premissions in admin, now i can see the peq database, but as with root as i said above I still cannot edit anything in the tables?
Fdraven
|
mysql> SELECT Host,User FROM user;
You mustn't use the root user for security reasons. Instead, create or use another account. Create a new account if necessary. To do this:
If EQEmu will be running on THIS computer:
mysql> insert into user set Host='localhost', User='eqemu', Password=password('eqpassword');
(replace "eqemu" with your desired username and "eqpassword" with the desired password for the account)
If EQEmu will be running on ANOTHER computer:
mysql> insert into user set Host='192.168.0.100', User='eqemu', Password=password('eqpassword');
(replace "192.168.0.100" with the IP address of the EQEmu server, "eqemu" with your desired username, and "eqpassword" with the desired password for the account)
PS: I stole this from the wiki I hope the wiki Guard don't catch me!
http://www.eqemulator.net/wiki/wikka...kka=MySQLSetup