Err: Module '1' is not correct!
- /www/wwwroot/novel.phoenixfm.com/protected/lib/speed.php on line 532
527.
}
528.
}
529.
function _err_router($msg){
530.
Global $__module, $__controller, $__action;
531.
if(!method_exists('BaseController', 'err404')){
532.
533.
err($msg);
}else{
534.
BaseController::err404($__module, $__controller, $__action, $msg);
535.
}
536.
}
537.
function _err_handle($errno, $errstr, $errfile, $errline){
- /www/wwwroot/novel.phoenixfm.com/protected/lib/speed.php on line 96
91.
92.
$controller_name = $__controller.'Controller';
93.
$action_name = 'action'.$__action;
94.
95.
if(!empty($__module)){
96.
97.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
98.
}
99.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
100.
// if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
101.
if(!class_exists($controller_name, true)){
- /www/wwwroot/novel.phoenixfm.com/index.php on line 8
3.
header('Access-Control-Allow-Origin: *');
4.
header('Access-Control-Allow-Methods: GET, POST, OPTIONS');
5.
header('Access-Control-Allow-Headers: Content-Type, Authorization, X-Requested-With');
6.
define('APP_DIR', realpath('./'));
7.
define("APP_PATH",dirname(__FILE__));
8.
require(APP_DIR.'/protected/lib/speed.php');