Err: Module 'news' is not exists!
- /home/www/bw_website/protected/lib/speed.php on line 897
892.
// 觸發 __call() 后終止執行,防止后續 404 邏輯重復執行
893.
exit();
894.
}
895.
}
896.
if ( !method_exists('BaseController', 'err404')) {
897.
898.
err($msg);
} else {
899.
BaseController::err404($__module, $__controller, $__action, $msg);
900.
}
901.
}
902.
function _err_handle($errno, $errstr, $errfile, $errline)
- /home/www/bw_website/protected/lib/speed.php on line 79
74.
75.
if ( !empty($__module)) {
76.
if ( !is_available_classname($__module))
77.
_err_router("Err: Module '$__module' is not correct!");
78.
if ( !is_dir(ROOT_DIR . DS . 'protected' . DS . 'controller' . DS . $__module))
79.
80.
_err_router("Err: Module '$__module' is not exists!");
}
81.
if ( !is_available_classname($__controller))
82.
_err_router("Err: Controller '$controller_name' is not correct!");
83.
if ( !class_exists($controller_name, true))
84.
_err_router("Err: Controller '$controller_name' is not exists!");
- /home/www/bw_website/index.php on line 7
2.
const DS = DIRECTORY_SEPARATOR;
3.
define('APP_DIR', realpath('.' . DS));
4.
const ROOT_DIR = APP_DIR;
5.
const PROTECTED_DIR = ROOT_DIR . DS . 'protected';
6.
const VIEW_DIR = ROOT_DIR . DS . 'template';
7.
8.
require(ROOT_DIR . DS . 'protected' . DS . 'lib' . DS . 'speed.php');
require(PROTECTED_DIR . DS . 'include' . DS . 'HtmlPurifierHelper.php');