Err: Controller 'sitemap.xmlController' is not exists!
- /www/wwwroot/www.ymzf.Linos.cn/protected/lib/Speed.php on line 1404
1399.
* @param string $msg 错误信息
1400.
*/
1401.
function _err_router($msg) {
1402.
Global $__module, $__controller, $__action;
1403.
if (!method_exists('BaseController', 'err404')) {
1404.
1405.
err($msg);
} else {
1406.
BaseController::err404($__module, $__controller, $__action, $msg);
1407.
}
1408.
}
1409.
- /www/wwwroot/www.ymzf.Linos.cn/protected/lib/Speed.php on line 474
469.
if (!is_available_classname($__controller)) {
470.
_err_router("Err: Controller '$controller_name' is not correct!");
471.
}
472.
473.
if (!class_exists($controller_name, true)) {
474.
475.
_err_router("Err: Controller '$controller_name' is not exists!");
}
476.
477.
if (!method_exists($controller_name, $action_name)) {
478.
_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
479.
}
- /www/wwwroot/www.ymzf.Linos.cn/index.php on line 175
170.
require(APP_DIR.'/protected/lib/Common.php');
171.
$speedFile = APP_DIR . '/protected/lib/Speed.php';
172.
if (function_exists('resolve_path_case')) {
173.
$speedFile = resolve_path_case($speedFile);
174.
}
175.
require($speedFile);