I finally figured the problem out. It was a permissions issue with Mysql. I had followed the setup guide for setting up a database and eqemu and had used the following example out of the guide for that purpose.
mysql -u root mysql
create database eq;
grant all privileges on *.* to test@localhost identified by 'test' with grant option;
The grant command in the example is enough to get eqemu up and working but not enough to use this program to access the database. I had to add another grant command and substitute test@localhost with my computer name@localhost to get the item editor to work. Additionally i believe that i can substitute localhost with the ip address of the system trying to connect to the database and use this program remotely. I will try that next.
Just wanted to let you know i got it working and say Congrats on a great program.
|