ARTICLE : 如何在非管理員角色開啟XOOPS DEBUG
如何在非管理員角色開啟XOOPS DEBUG
設定資料庫中的資料表config>debug_mode>conf_value set 1
修改include\common.php
約309行附近
if ($xoopsLogger->activated) { $level = isset($xoopsConfig['debugLevel']) ? (int)$xoopsConfig['debugLevel'] : 2; if (($level == 2 && empty($xoopsUserIsAdmin)) || ($level == 1 && !$xoopsUser)) { error_reporting(0); $xoopsLogger->activated = false; } unset($level); }改成
if ($xoopsLogger->activated) { $level = isset($xoopsConfig['debugLevel']) ? (int)$xoopsConfig['debugLevel'] : 2; //if (($level == 2 && empty($xoopsUserIsAdmin)) || ($level == 1 && !$xoopsUser)) { error_reporting(0); $xoopsLogger->activated = true; //} unset($level); }這是開發情況才需要用到,正式網站請勿這樣修改。