我的blog今天突然的空白一片
不管是blog首頁,還是admin
在error log中出現了一段錯誤訊息
EACCELERATOR: PHP crashed on opline 3 of debug_backtrace() at /home/bibicall/public_html/class/logger/layout/patternlayout.class.php:61
查了一下,有到這個問題的,好像都是因為MySQL升級後才碰到的
我到英文論壇看了一下,也有人碰到這個問題
他說把class/logger/layout/patternlayout.class.php中的 debug_backtrace() 給拿掉就好了
我不知道該如何改,不敢輕舉妄動,找了一下檔案中
跟debug_backtrace() 有關的程式碼如下:
/**
* @static
* @returns returns an array containing information about the stack, or an empty array
* if such information is not available.
* per line
*/
function getStackTrace()
{
if( function_exists("debug_backtrace"))
return( debug_backtrace());
else
return( Array());
}
有人可以幫個忙嗎?我是要把整段 // 掉?還是有其他作法?
英文論壇上的那個人只說了
I removed the debug_backtrace() call from that file and it is now working.
也不知道他是槓掉哪裡