Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Solution: remove & on the line mentioned in the error

สำหรับขั้นตอนภาษาไทยมีดังนี้

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

PHP Fatal error: Uncaught Error: Call to undefined function mysql_connect () in ... 

เหตุผล: ext ทั้งหมด / mysql functions ได้ทำการลบ

ท่านสามารถแก้ใข้เบื้องต้นด้วยการแก้โค้ดใน PHP ไฟล์ที่ต้องการ


// include mysql compatibility class for PHP7
if(version_compare('5.6.0', PHP_VERSION) < 0)

{
include_once('inc/mysql.php');

}

และปรับเปลี่ยนทดแทน mysql ไฟล์ทางด้านล่างในโฟลเดอร์ https://github.com/dshafik/php7-mysql-shim/tree/master/lib

PHP Parse error: syntax error, unexpected 'new' (T_NEW)

ต้นเหตุ : ท่านไม่ใช้สามารถเพิ่ม New Object ลงไปได้ทันที

วิธีการแก้ใข : ให้ทำการลบบรรทัดที่มีการ error ก่อน

Filter by label (Content by label)
showLabelsfalse
max5
spacescom.atlassian.confluence.content.render.xhtml.model.resource.identifiers.SpaceResourceIdentifier@1422e
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel = "kb-how-to-article" and type = "page" and space = "SUP"
labelskb-how-to-article

...