Not sure if I've hit the right forum but if not i'm sorry and if it can be moved to the right section please do so.
For now here's my problem.
I've been working on my website on my computer (localhost) and I wanted to test my website on my server so i've created a new database, user for that database and so on.. What I didn't realized is that my host automatically adds a prefixe to my user AND databases.
On my localhost the user/password and database where simple, root/root and test. Now I want a bit more security online so i've created a real user/password and named the database correctly but it's really different from the original one : prefixe_user/(password) and prefixe_databasename.
I've uploaded all the files onto my server and when I go to the mainpage http://server.com/folder/ I get this :
PDOException: SQLSTATE[28000] [1045] Access denied for user 'prefixe_user'@'localhost' (using password: YES) in drupal_get_installed_schema_version() (line 150 of /home/USER/public_html/FOLDERNAME/includes/install.inc).
I've changed the info in the /sites/default/settings.php to reflect the new database/username/password
$databases = array (
'default' =>
array (
'default' =>
array (
'database' => 'prefixe_databasename',
'username' => 'prefixe_user',
'password' => 'MYPASSWORD',