Hey guys, so I've been having an errorwith Php/MySQL for a long time with something I'm trying to do. I posted it in the PHP section before I found this subforum, so I'm just going to place the link to it below. Was hoping maybe I'd have a better chance of getting an answer if I posted it here too.
Basically, I'm trying to use a Php script to receive information from Second Life, the script should connect and inserts the information to my database, but, I'm getting the error in the title.
A, SHOW GRANTS for CURRENT_USER; returns:
Grants for vangua01@localhost
GRANT USAGE ON . TO 'vangua01'@'localhost' IDENTIFIED BY PASSWORD '57c63ca170dc2c10'
GRANT ALL PRIVILEGES ON vangua01\_access\_list
.* TO 'vangua01'@'localhost'
GRANT ALL PRIVILEGES ON vangua01\_registration
.* TO 'vangua01'@'localhost'
GRANT ALL PRIVILEGES ON vangua01\_%
.* TO 'vangua01'@'localhost'
Since I'm having this issue, I tried to create a new user through the SQL query box in PhpMyAdmin (all the others were created through my web host's control panel) using:
CREATE USER 'accesslist_admin'@'localhost' IDENTIFIED by 'n391fnbgfjf0';
And I get:
#1227 - Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation
I don't understand what's going on..