viintageecstasy
2009-08-24 11:19:34 UTC
In the main folder of my website I have a folder called "Connections", which has a PHP file called "connPhotoClub", and in here I have this:
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_connPhotoClub = "10.6.186.3";
$database_connPhotoClub = "mdcphotoclub";
$username_connPhotoClub = "root";
$password_connPhotoClub = "root";
$connPhotoClub = mysql_pconnect($hostname_connPhotoClub,
$username_connPhotoClub, $password_connPhotoClub) or
trigger_error(mysql_error(),E_USER_ERROR);
?>
Now when I try to access the website, this error comes up:
Warning: mysql_pconnect(): Access denied for user 'root'@'208.109.181.208' (using password: YES) in /home/content/m/d/c/mdcphotoclub/html/Connections/connPhotoClub.php on line 9
Fatal error: Access denied for user 'root'@'208.109.181.208' (using password: YES) in /home/content/m/d/c/mdcphotoclub/html/Connections/connPhotoClub.php on line 9
Any suggestions?