Err: Controller 'sitemap.xmlController' is not exists!
- /www/wwwroot/www.verify.Linos.cn/protected/lib/Speed.php on line 1209
1204.
* @param string $msg 错误信息
1205.
*/
1206.
function _err_router($msg) {
1207.
Global $__module, $__controller, $__action;
1208.
if (!method_exists('BaseController', 'err404')) {
1209.
1210.
err($msg);
} else {
1211.
BaseController::err404($__module, $__controller, $__action, $msg);
1212.
}
1213.
}
1214.
- /www/wwwroot/www.verify.Linos.cn/protected/lib/Speed.php on line 325
320.
if (!is_available_classname($__controller)) {
321.
_err_router("Err: Controller '$controller_name' is not correct!");
322.
}
323.
324.
if (!class_exists($controller_name, true)) {
325.
326.
_err_router("Err: Controller '$controller_name' is not exists!");
}
327.
328.
if (!method_exists($controller_name, $action_name)) {
329.
_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
330.
}
- /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';