I am getting this error everytime im trying to connect to my database
Warning: mysqli_connect() [function.mysqli-connect]: (28000/1045):
Access denied for user 'root'@'name of the computer' (using password: YES) in PATH_TO_FILE on line 8
I checked the privilege and that's what I got
GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' WITH GRANT OPTION
with that command
show GRANTS for "root"@"127.0.0.1"
Furthermore this is how i connect
$mysqli = mysqli_connect('path to server', 'root', 'gourami',"recherche");
but as you can see the name of the user is not the same in the error message...
I have no idea what is going on, because that should normally work..
I wonder if its my host that is blocked but I had that problem before,but the message wasn't the same. I fixed it with the command.
flush hosts;
But this time it didn't work