Well, what to say: I, for example aren't authorized to execute a command like that :
CREATE DATABASE IF NOT EXISTS `unique_name`;
for a simple reason, my web host gives me the data base(s), and I can't create / modify / erase them.
I'm only allowed to create TABLES in a data base.
I think also that my case is the "classic" one: you have a (or more) data base, and you are allowed to create TABLES in as much as you like.
Can you confirm that you can actually CREATE a DATA BASE on your SQL server ?? Because that's what the question all about, the 'error' is clear. It's saying you can't.
Confirm that your are able to do so, just copy this
CREATE DATABASE IF NOT EXISTS `ph34rt3hcute1_roster`;
in phpmyadmin, and execute this (it's a valid SQL phrase).
I’m pretty sure that you’ll see the real face of the rror that this statement produces, this:
“
supplied argument is not a valid MySQL-Link resource in…”
becomes:
MySQL a replies:
#1044 - Access denied for user 'your_name'@'%' to database 'unique_name'
Try to install without filling in the last two lines (saying this from memory, can't install a fresh WoWRoster to test right now - I'm on a 2 Kbit connection
)