Thanks for your reply.
I have tried that but it shows the same error.
I also tried to check my database connection using the following code by creating a file test.php (domain.com/test.php):
<?php
$testConnection = mysql_connect(‘localhost’, ‘root’, ‘password’);
if (!$testConnection) {
die(‘Error: ‘ . mysql_error());
}
echo ‘Database connection working!’;
mysql_close($testConnection);
?>
It outputs the error :
“Error: Access denied for user ‘xxxxxxxx’@’xx.1xx.xxx.xx’ (using password: YES)
What does that error mean?
Thanks in advance