Err: Controller 'sitemap.xmlController' is not exists!
- /www/wwwroot/www.verify.Linos.cn/protected/lib/Speed.php on line 1129
1124.
* @param string $msg 错误信息
1125.
*/
1126.
function _err_router($msg) {
1127.
Global $__module, $__controller, $__action;
1128.
if (!method_exists('BaseController', 'err404')) {
1129.
1130.
err($msg);
} else {
1131.
BaseController::err404($__module, $__controller, $__action, $msg);
1132.
}
1133.
}
1134.
- /www/wwwroot/www.verify.Linos.cn/protected/lib/Speed.php on line 289
284.
if (!is_available_classname($__controller)) {
285.
_err_router("Err: Controller '$controller_name' is not correct!");
286.
}
287.
288.
if (!class_exists($controller_name, true)) {
289.
290.
_err_router("Err: Controller '$controller_name' is not exists!");
}
291.
292.
if (!method_exists($controller_name, $action_name)) {
293.
_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
294.
}
- /www/wwwroot/www.verify.Linos.cn/index.php on line 14
9.
exit('需要 PHP 8.0+,当前:' . PHP_VERSION);
10.
}
11.
define('APP_DIR', $root);
12.
require APP_DIR . '/protected/Version.php';
13.
require APP_DIR . '/protected/lib/Common.php';
14.
require APP_DIR . '/protected/lib/Speed.php';