Access denied for user...
This is for people who keep getting access denied errors, first, take your db.ini...
[Database]
host=133.133.13.13
user=image
password=bleh
database=eq
timestamp=4-9-2002 1640
I assume that your MySQL db is on the same computer your hosting, if its not, the ip to grant @ will be the one of the computer connecting to the mysql server.
Taking this make this to type into MySQL:
What this does below is give image at the ip 133.133.13.13 all access to eq when authorized with password bleh.
GRANT ALL PRIVILEGES ON eq.* TO image@133.133.13.13 IDENTIFIED BY 'bleh' WITH GRANT OPTION;
This should help out, I noticed some on HQ talking about having this problem with EQEMu :P
|