trouble with wordpress, actually mysql
I am unable to install wordpress on my server because I can't seem to set up a user for my server. It says in the instructions to create a server (which I had done) and then create a user for it. I can't seem to find it in the gui. I use fuitadnet.com for my service. I connect to my mysql via (what I believe to be called) an esim interface. Can someone help me out with this?
If I can't fix this in a reasonable amount of time, i'm going to switch servers.
Comments
If you are able to enter MySQL commands, here is how you create a MySQL user. Everything in italics is a variable you should modify.
GRANT ALL PRIVILEGES ON databasename.tablename TO 'username'@'hostname' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;