Err: Module 'template' is not exists!
- /www/wwwroot/pay.46x.cn/protected/lib/speed.php on line 659
654.
}
655.
}
656.
function _err_router($msg) {
657.
Global $__module, $__controller, $__action;
658.
if (!method_exists('BaseController', 'err404')) {
659.
660.
err($msg);
} else {
661.
BaseController::err404($__module, $__controller, $__action, $msg);
662.
}
663.
}
664.
function _err_handle($errno = 0, $errstr = 0, $errfile = 0, $errline = 0) {
- /www/wwwroot/pay.46x.cn/protected/lib/speed.php on line 132
127.
if (!is_available_classname($__module)) {
128.
_err_router("Err: Module '$__module' is not correct!");
129.
}
130.
131.
if (!is_dir(APP_DIR . DS . 'protected' . DS . 'controller' . DS . $__module)) {
132.
133.
_err_router("Err: Module '$__module' is not exists!");
}
134.
135.
}
136.
if (!is_available_classname($__controller)) {
137.
_err_router("Err: Controller '$controller_name' is not correct!");
- /www/wwwroot/pay.46x.cn/index.php on line 41
36.
}
37.
38.
define('APP_DIR', realpath('./'));
39.
require(APP_DIR.'/protected/Version.php');
40.
require(APP_DIR.'/protected/lib/Common.php');
41.
42.
require(APP_DIR.'/protected/lib/speed.php');
43.
if($_GET['runcron']){
44.
//云端防止监控自动停止
45.
$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);
46.
exit('站点正常哦');