อัพโหลดเวปขึ้น hosting แล้ว Error : File 'c:\mysql\share\charsets\?.conf' not found (Errcode: 2)...

ในกรณีรันหน้าเวปในเครื่องแล้วใช้งานได้ แต่พออัพโหลดขึ้น host แล้ว error แบบนี้ 

'c:\mysql\share\charsets\?.conf' not found (Errcode: 2)
Character set '#18' is not a compiled character set and is not specified in the 'c:\mysql\share\charsets\Index' file


อันนี้เป็น bug ของ mysql4 สำหรับ function mysql_connect ซึ่งถูกเรียกใช้ ใน body tag ครับ
วิธีแก้ไขคือ นำ function mysql_connect() ไปไว้บนสุดของ file .php นั้นๆ ที่ได้ถูกเรียกใช้ครับ

 ยกตัวอย่าง

connect.php มี mysql_connect() function อยู่
ไฟล์ที่เรียก database ให้แก้ตามนี้ครับ

 <?php

include ‘connect.php’;

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />

<title>Untitled Document</title>

</head>

 <body>

 <?php code ?>

 </body>

</html>


หรือ ในกรณีที่ใช้ session

 <?php

session_start();

include ‘connect.php’;

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />

<title>Untitled Document</title>

</head>

 <body>

<?php code ?>

 </body>

</html>

  • 2 Users Found This Useful
Was this answer helpful?

Related Articles

ถ้าขึ้น Error Warning แบบนี้ต้องแก้อย่างไร ? Warning: session_start() [function.session-start]: Cannot send session cookie - headers

ถ้าขึ้น Error Warning แบบนี้ต้องแก้อย่างไร  ? Warning: session_start() [function.session-start]:...

ไชโย โฮสติ้งมี cronjobs ให้หรือไม่

มี คุณสามารถตั้ง cronjobs ให้ทำงานได้โดยมีเงื่อนไขว่าจะต้องไม่เป็นการรบกวนระบบทั้งหมดจนเกินไป...

เว็บไซต์ติดไวรัส ทำยังไงดี!!

เว็บไซต์ติดไวรัส ทำยังไงดี!! หน้าเว็บไซต์ติดไวรัส, เว็บไซต์อันตราย, เว็บถูกบล๊อค...

ต้องใช้เวลานานเท่าไรหลังจากที่จ่ายเงินแล้วถึงจะสามารถ อัพโหลดเว็บไซต์ได้

ภายใน 24 ชั่วโมงในวันเวลาทำการ  เพื่อตรวจสอบการจ่ายเงินในกรณีที่ท่านใช้วิธีโอนเงินผ่านทางธนาคาร...

การเปลี่ยน collation MySQL

1. เมื่อเข้ามาที่ Database จะพบกับเจ้าตัวปัญหา ที่ว่านี้ คือเราแก้ Collation ของ table...