Problem mit Forum

intro5

Grünschnabel
Hallo liebe Community,
Ich habe ein Problem mit ein Forum.
Er verbindet sich nicht mit der Mysql Datenbank und es kommt folgender Fehler:


Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'chissy2'@'192.168.103.1' (using password: YES) in /usr/export/www/hosting/chrissy2/forumtest3/main_forum.php on line 9
cannot connect

Ich habe schon alles mögliche versucht aber es funktioniert nicht:

Kann mir jemand dabei helfen?

Ich poste noch mal den code von der main_forum.php:

<?php
$host="localhost"; // Host name
$username="xxxxx"; // Mysql username
$password="xxxxx"; // Mysql password
$db_name="xxxxx"; // Database name
$tbl_name="forum_question"; // Table name

// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");

$sql="SELECT * FROM $tbl_name ORDER BY id DESC";
// OREDER BY id DESC is order result by descending
$result=mysql_query($sql);
?>
<table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="6%" align="center" bgcolor="#E6E6E6"><strong>#</strong></td>
<td width="53%" align="center" bgcolor="#E6E6E6"><strong>Topic</strong></td>
<td width="15%" align="center" bgcolor="#E6E6E6"><strong>Views</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Replies</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Date/Time</strong></td>
</tr>

<?php
while($rows=mysql_fetch_array($result)){ // Start looping table row
?>
<tr>
<td bgcolor="#FFFFFF"><? echo $rows['id']; ?></td>
<td bgcolor="#FFFFFF"><a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo $rows['topic']; ?></a><BR></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['view']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['reply']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['datetime']; ?></td>
</tr>

<?php
// Exit looping and close connection
}
mysql_close();
?>
<tr>
<td colspan="5" align="right" bgcolor="#E6E6E6"><a href="create_topic.php"><strong>Create New Topic</strong> </a></td>
</tr>
</table>

Ah noch was der Script ist hiervon http://www.phpeasystep.com/workshopview.php?id=12.
 
Das bedeuted nix anderes als das dein Username oder Password falsch ist.Daher verweigert er dir den Zugriff auf die Datenbank.

Mfg Splasch
 
Hm erst einmal danke für die Antwort.
Dachte ich auch aber das ist ganz sicher richtig hab das ei paar mal nach geguckt....

weiß sonst noch jemand woran es liegen könnte?
 
Zurück