Err: Module 'assets' is not exists!
- /www/wwwroot/yeak.91yl.top/protected/lib/speed.php on line 649
644.
}
645.
}
646.
function _err_router($msg) {
647.
Global $__module, $__controller, $__action;
648.
if (!method_exists('BaseController', 'err404')) {
649.
650.
err($msg);
} else {
651.
BaseController::err404($__module, $__controller, $__action, $msg);
652.
}
653.
}
654.
function _err_handle($errno = 0, $errstr = 0, $errfile = 0, $errline = 0) {
- /www/wwwroot/yeak.91yl.top/protected/lib/speed.php on line 133
128.
if (!is_available_classname($__module)) {
129.
_err_router("Err: Module '$__module' is not correct!");
130.
}
131.
132.
if (!is_dir(APP_DIR . DS . 'protected' . DS . 'controller' . DS . $__module)) {
133.
134.
_err_router("Err: Module '$__module' is not exists!");
}
135.
136.
}
137.
if (!is_available_classname($__controller)) {
138.
_err_router("Err: Controller '$controller_name' is not correct!");
- /www/wwwroot/yeak.91yl.top/index.php on line 45
40.
if($_GET['runcron']){
41.
//云端防止监控自动停止
42.
$ch = curl_init();curl_setopt($ch, CURLOPT_URL, ((int)$_SERVER['SERVER_PORT'] == 80 ? 'http://'.$_SERVER['HTTP_HOST'] : 'https://'.$_SERVER['HTTP_HOST']).'/Crontab/Tim/Run?r='.time());curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);curl_setopt($ch, CURLOPT_TIMEOUT, 1);curl_exec($ch);curl_close($ch);
43.
exit('站点正常哦');
44.
}
45.
require(APP_DIR.'/protected/lib/speed.php');