เว็บไดเร็คทอรี่ ด้วย AJAX ช่วยดูให้หน่อยครับมาน error
จากบทความ เว็บไดเร็คทอรี่ ด้วย AJAX
ผมได้ติดตั้งเรียบร้อยแล้ว ในหน้า admin เวลาผมเพิ่มหมวดหมู่มันแจ้งว่า
Warning: chmod() [function.chmod]: Operation not permitted in /home/dooideas/domains/dd2d.com/public_html/directory/bin/tdb.class.php on line 790
ข้อผิดพลาด: ข้อผิดพลาด: ไม่สามารถเขียนลงบนฐานข้อมูลได้
มันเป็นที่อะไรช่วยดูให้หน่อยครับ
ขอบคุณครับ
ในไฟล์ tdb.class.php ที่มาแจ้ง error
function canWrite($table) {
$fileOK = true;
$file = $this->workingDir.$table;
if (!is_writeable($file)) $fileOK = chmod($file, 0777);
$file = $this->workingDir."$table.memo.php";
if ($fileOK && !is_writeable($file)) $fileOK = chmod($file, 0777);
$file = $this->workingDir."$table.ref";
if ($fileOK && !is_writeable($file)) $fileOK = chmod($file, 0777);
if (!$fileOK) $this->sendError("<font style=\"color:red\">ข้อผิดพลาด: </font>ไม่สามารถเขียนลงบนฐานข้อมูลได้");
return $fileOK;
}
แล้วผมลองกำหนดสิทธ์ โฟล์เดอร์ bin เป็น 777 มันก็ยังบอกว่า ข้อผิดพลาด: ไม่สามารถเขียนลงบนฐานข้อมูลได้
- -" มันยังเป็นแบบนี้อีกช่วยหน่อยครับ