When attempting to execute the Stutter chat script, the following errors are generated.
However, the script still works.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
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.
and this is the section from the index.php file which cals the variables.Code:$db_host = "localhost"; $db_user = "cybernetx"; $db_password = "*********"; $db_name = "cybernetx"; $db_table = "stutter"; $timeout = 180; $language = "english"; // current translations: english|spanish
Please help!Code:$user = ereg_replace(" ", "_", $user); $user = strip_tags($user); if ($user == "-") { $user = ""; } if ($user == "*") { $user = ""; } if ($user) { setcookie("StutterUser", $user); } include("common.php");
PS, the database is correctly set up also.




Reply With Quote