สอบถามเรื่อง Code php และวิธีแก้ปัญหาข้อผิดพลาดเหล่านี้ Warning: fopen('xx') [function.fopen]: failed to open stream: Permission denied in
chmod ครับ
Date :
2011-12-18 16:37:26
By :
yogolas
ขอโทษนะครับขอถามหน่อยครับ ถ้ามันขึ้นโค๊ดอย่างนี้เราจะมีวิธีแก้ยังไงครับ
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in C:\AppServ\www\work\chapter-16\config.inc.php on line 6
ติดต่อ Host ไม่ได้
Date :
2011-12-24 17:16:18
By :
Sorakrai
username หรือ password ผิด ครับ หรือไม่ก็ไม่มี mysql ที่ IP นั้น
Date :
2011-12-24 17:32:17
By :
kerb
ขอบคุณครับเดี๋ยวผมจะ copy code ให้พี่ดูนะครับ พี่ช่วยแก้ให้ผมหน่อยครับ คือตอนนี้ผมทำเว็ปบอร์ดอยู่ครับ
ไฟล์ ans.php นะครับ
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
</head>
<body>
<div align="center">
<p><br>
<?
$sql = "select * from quiz where id_question=$id_question";
$dbquery = mysql_db_query($dbname, $sql);
$result = mysql_fetch_array($dbquery);
$id_question = $result[id_question];
$title = $result[title];
$name = $result[name];
$message = $result[message];
$email = $result[email];
$date_q = $result[date_q];
print "<table width=532 border=1 align=center cellpadding=1 cellspacing=1 bordercolor=0000FF>";
print "<tr>";
print "<td width=703>";
print "<table width=532 align=center>";
print "<tr bgcolor=003399>";
print "<td width=97><font color=FF6600><b>หัวข้อกระทู้</b></font></td>";
print "<td width=417><font color=FF6600><b>".$title."</font></b></td>";
print "</tr>";
print "<tr bgcolor=CCCCCC>";
print "<td width=97><b>รายละเอียด</b></td>";
print "<td width=417>".$message."</td>";
print "</tr>";
print "<tr bgcolor=CCCCCC>";
print "<td width=97><b>ผู้ตั้งกระทู้</b></td>";
print "<td width=417>".$name."</td>";
print "</tr>";
print "</table>";
print"</td>";
print"</tr>";
print"</table>";
$sql = "select * from ans where id_question=$id_question order by id_ans";
$dbquery = mysql_db_query($dbname, $sql);
$num_rows = mysql_num_rows($dbquery);
if($num_rows==''){
print "ยังไม่มีผู้แสดงความคิดเห็น";
}
$i=0;
while ($i < $num_rows)
{
$result = mysql_fetch_array($dbquery);
$id_ans = $result[id_ans];
$id_question = $result[id_question];
$name = $result[name];
$message = $result[message];
$email = $result[email];
$date_a = $result[date_a];
$n++;
print"<br>";
print "<table width=532 border=1 align=center cellpadding=1 cellspacing=1 bordercolor=0000FF>";
print "<tr>";
print "<td width=703>";
print "<table width=532 align=center>";
print "<tr bgcolor=999999 ><div align=center><b>ความคิดเห็นที่ $n</b></div></tr>";
print "<tr bgcolor=CCCCCC>";
print "<td width=97><b>รายละเอียด</b></td>";
print "<td width=417>".$message."</td>";
print "</tr>";
print "<tr bgcolor=CCCCCC>";
print "<td width=97><b>จากคุณ</b></td>";
print "<td width=417>".$name."</td>";
print "</tr>";
print "</table>";
print"</td>";
print"</tr>";
print"</table>";
$i++;
}
mysql_close();
?>
</p>
</div>
<form name="form1" method="post" action="reply.php">
<table width="532" border="1" align="center" cellpadding="1" cellspacing="1" bordercolor="#0000FF">
<tr>
<td width="703"><table width="524" border="0" align="center" cellspacing="1">
<tr>
<td colspan="2" bgcolor="#003399"><div align="center" class="style1"><u>แสดงความคิดเห็น</u></div></td>
</tr>
<tr>
<td width="97" bgcolor="#CCCCCC">ชื่อผู้ตอบ :</td>
<td width="417" bgcolor="#999999"><input name="name" type="text" id="name" size="65"></td>
</tr>
<tr>
<td bgcolor="#CCCCCC">รายละเอียด :</td>
<td bgcolor="#999999"><textarea name="message" cols="65" rows="7" wrap="VIRTUAL" id="message">
</textarea></td>
</tr>
<tr>
<td bgcolor="#CCCCCC"> อีเมล์ :</td>
<td bgcolor="#999999"><input name="email" type="text" id="email" size="30"></td>
</tr>
<tr>
<td bgcolor="#CCCCCC"> </td>
<td bgcolor="#999999"><input type="submit" name="Submit" value="แสดงความคิดเห็น">
<input type="reset" name="Submit2" value="ยกเลิก"></td>
<input type="hidden" name="id_question" value="<? echo $id_question;?>">
</tr>
</table></td>
</tr>
</table>
</form>
<div align="center">[<a href="webboard.php">กลับหน้าจอ Webboard</a>]
</div>
</body>
</html>
Date :
2011-12-25 14:10:27
By :
Sorakrai
ไฟล์ webboard.php นะครับ
html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
.style1 {
color: #FF6600;
font-weight: bold;
}
-->
</style>
</head>
<body>
<h3 align="center">Webboard </h3>
<?
print "<table width=532 border=1 align=center cellpadding=1 cellspacing=1 bordercolor=0000FF>";
print "<tr>";
print "<td width=703>";
print "<table width=532 align=center>";
print "<tr bgcolor=003399>";
print "<td align = center ><font color=FF6600><b>รหัสกระทู้</b></font></td>";
print "<td align = center><font color=FF6600><b>หัวข้อกระทู้</b></font></td>";
print "<td align = center><font color=FF6600><b>ผู้ตั้งคำถาม</b></font></td>";
print "<td align = center><font color=FF6600><b>วันที่ตั้งคำถาม</b></font></td>";
print "</tr>";
$sql = "select * from quiz order by id_question desc";
$dbquery = mysql_db_query($dbname, $sql);
$num_rows = mysql_num_rows($dbquery);
$i=0;
while ($i < $num_rows)
{
$result = mysql_fetch_array($dbquery);
$id_question = $result[id_question];
$title = $result[title];
$name = $result[name];
$message = $result[message];
$email = $result[email];
$date_q = $result[date_q];
$count_q = $result[count_q];
print "<tr bgcolor=CCCCCC>";
print "<td>".$id_question ."</td>";
print "<td><A HREF=\"ans.php?id_question=$id_question\" target=\"$id_question\">$title</A></td>";
print "<td>".$name." </td>";
print "<td> " .$date_q." </td>";
print "</tr>";
$i++;
}
print"</table>";
mysql_close();
print "</td> ";
print "</tr>";
print"</table>";
?>
<form name="form1" method="post" action="postques.php">
<table width="532" border="1" align="center" cellpadding="1" cellspacing="1" bordercolor="#0000FF">
<tr>
<td width="703"><table width="524" border="0" align="center" cellspacing="1">
<tr>
<td colspan="2" bgcolor="#003399"><div align="center" class="style1"><u>ตั้งกระทู้ใหม่</u></div></td>
</tr>
<tr>
<td width="97" bgcolor="#CCCCCC">หัวข้อกระทู้ :</td>
<td width="417" bgcolor="#999999"><input name="title" type="text" id="title" size="65"></td>
</tr>
<tr>
<td bgcolor="#CCCCCC">รายละเอียด : </td>
<td bgcolor="#999999"><textarea name="message" cols="65" rows="7" wrap="VIRTUAL" id="message">
</textarea></td></tr>
<tr>
<td bgcolor="#CCCCCC"> ชื่อผู้โพสต์ :</td>
<td bgcolor="#999999"><input name="name" type="text" id="name" size="30"></td>
</tr>
<tr>
<td bgcolor="#CCCCCC">อีเมล์ : </td>
<td bgcolor="#999999"><input name="email" type="text" id="email" size="30"></td>
</tr>
<tr>
<td bgcolor="#CCCCCC"> </td>
<td bgcolor="#999999"><input type="submit" name="Submit" value="ตั้งคำถาม">
<input type="reset" name="Submit2" value="ยกเลิก"></td>
</tr>
</table></td>
</tr>
</table>
</form>
</body>
</html>
Date :
2011-12-25 14:12:34
By :
Sorakrai
ไฟล์ config.inc.php ครับ
<?
$host = "127.0.0.1";
$user = "root";
$passwd = "1234";
$dbname = "webboard";
mysql_connect($host,$user,$passwd) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die("ติดต่อฐานข้อมูลไม่ได้");
?>
Date :
2011-12-25 14:13:56
By :
Sorakrai
ไฟล์ postques.php ครับ
<?
include('config.inc.php');
$date_q=date("d/m/y");
$sql = "insert into quiz (title, name, message, email, date_q) values ('$title', '$name', '$message', '$email', '$date_q')";
$dbquery = mysql_db_query($dbname, $sql);
mysql_close();
print "<br><div align=center><B>กระทู้ของคุณ $name ถูกตั้งเรียบร้อยแล้ว</B></div><BR>";
print "<div align=center><A HREF=\"webboard.php\">กลับไปหน้ากระทู้หลัก</A></div>";
?>
Date :
2011-12-25 14:15:01
By :
Sorakrai
ไฟล์ reply.php ครับ
<?
include('config.inc.php');
$date_a=date("d/m/y");
$sql = "insert into ans (id_question, name, message, email, date_a) values ($id_question, '$name', '$message', '$email', '$date_a')";
$dbquery = mysql_db_query($dbname, $sql);
mysql_close();
print "<br><div align=center><B>ขอบคุณสำหรับความคิดเห็น </B></div><BR>";
print "<div align=center><A HREF=\"ans.php?id_question=$id_question\">กลับไปดูกระทู้ที่คุณตอบ </A></div>";
?>
Date :
2011-12-25 14:16:09
By :
Sorakrai
คือ ไฟล์ทั้งหมดนี้ผมได้ใช้ทำเว็ปบอร์ดครับ ตั้งค่าที่ Appserve เรียบร้อยแล้วครับแต่ข้อมูลก็ใช้ไม่ได้ เวลาถ้ารันหน้า webboard ก็จะขึ้นว่า Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\work\chapter-16\webboard.php on line 30 หรือไม่ก็
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in C:\AppServ\www\work\chapter-16\config.inc.php on line 6
ติดต่อ Host ไม่ได้
ไม่รู้จะปรึกษาใครจริงๆๆครับ เออลือบอกครับ ไฟล์ที่ผมสร้างแต่ละไฟล์คือ ไฟล์ webboard เป็นไฟล์หน้าจอหลักสำหรับแสดงกระทู้ครับ
ไฟล์ postques.php เป็นไฟลืตอบรับผู้ใช้ว่าได้ตั้งกระทู้เรียบร้อยแล้ว ไฟล์ ans.php เป็นไฟล์ทีี่ใช้เปิดดูรายละเอียดของกระทู้ ไฟล์ reply.php เป็นไฟล์ตอบรับว่าผู้ใช้ได้ตอบกระทู้เรียบร้อยแล้ว ส่วนไฟล์ config.inc.php เป็นไฟล์ที่เก็บข้อมูลการเชื่อมต่อฐานข้อมูลครับ
อย่างที่พี่แนะนำนะครับ ถ้าเกิดปัญหานี้ขึ้น
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in C:\AppServ\www\work\chapter-16\config.inc.php on line 6
ติดต่อ Host ไม่ได้
พี่แนะนำว่า username หรือ password ผิด ครับ หรือไม่ก็ไม่มี mysql ที่ IP นั้น
แล้วผมควรจะแก้ไขปัญหายังไงล่ะครับ พี่ช่วยผมด้วย พี่ลองเอาโค๊ดที่ผมเขียนลองรันดูครับ แล้วช่วยแนะนำวิีธีแก้ให้ผมด้วยครับ ผมไม่รู้จะไปพึ่งใครจริง ๆครับ ยังไงก็ฝากเรื่องนี้ไว้ด้วยนะครับ ขอขอบคุณครับ
Date :
2011-12-25 14:26:58
By :
Sorakrai
Load balance : Server 00