一、無法取得錯誤訊息,一片空白
空白是無法調試的,
所以要做的第一件事,
能夠輸出錯誤訊息。
開啟 include/common.inc.php
##找到下面的程式碼//error_reporting(E_ALL); error_reporting(E_ALL || ~E_NOTICE);
error_reporting(E_ALL); //error_reporting(E_ALL || ~E_NOTICE);
二、 'continue' not in the 'loop' or 'switch' context錯誤
你刷新後可能遇到這個錯誤Fatal error: ‘continue’ not in the ‘loop’ or ‘switch’ context in ….include/common.func.php on line 49
##可
三、函數mysql_query()未定義mysql_*的系列函數在php7中不能再使用,
會出現下面的錯誤
Fatal error: Uncaught Error: Call to undefined function mysql_query() in ….include/dedesql.class.php:152
php7中需要使用mysqli或pdo的方式,
跟資料庫通信,
更安全更有效率。
解決的方法
開啟檔案data/config.cache.inc.php
$cfg_mysql_type = ‘mysql’;
改為
$cfg_mysql_type = ‘mysqli’;
方法一
將data目錄權限設定為777或755,注意是整個data目錄,設定完畢刷新即可。
方法二
進入data/tplcache,備份一份,然後除了index.html以外全部刪除,接著將data/tplcache目錄設定為777,重新整理即可。
以上是解決dedecms在php7下的一些常見問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!