When attempting to execute the Stutter chat script, the following errors are generated.

Code:
Warning: Access denied for user: 'nobody@localhost' (Using password: NO) in common.php on line 36

Warning: MySQL Connection Failed: Access denied for user: 'nobody@localhost' (Using password: NO) in common.php on line 37

Warning: MySQL: A link to the server could not be established in common.php on line 37
However, the script still works.

The variables have been set up as below ($db_password not really starred). Lines 36 and 37 in the mentioned file, common.php call variables from the list below.

Code:
$db_host = "localhost";
$db_user = "cybernetx";
$db_password = "*********";
$db_name = "cybernetx";
$db_table = "stutter";
$timeout = 180;
$language = "english";	// current translations: english|spanish
and this is the section from the index.php file which cals the variables.

Code:
$user = ereg_replace(" ", "_", $user);
 $user = strip_tags($user);
 if ($user == "-") { $user = ""; }
 if ($user == "*") { $user = ""; }
 if ($user) {
  setcookie("StutterUser", $user);
 }
 include("common.php");
Please help!

PS, the database is correctly set up also.