Err: Module 'fenlei35151829' is not exists!
- /home/ok_www/protected/lib/speed.php on line 526
521.
}
522.
}
523.
function _err_router($msg){
524.
Global $__module, $__controller, $__action;
525.
if(!method_exists('BaseController', 'err404')){
526.
527.
err($msg);
}else{
528.
BaseController::err404($__module, $__controller, $__action, $msg);
529.
}
530.
}
531.
function _err_handle($errno, $errstr, $errfile, $errline){
- /home/ok_www/protected/lib/speed.php on line 104
99.
$controller_name = $__controller.'Controller';
100.
$action_name = 'action'.$__action;
101.
102.
if(!empty($__module)){
103.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
104.
105.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
}
106.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
107.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
108.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
109.
- /home/ok_www/index.php on line 3
1.
<?php
2.
define('APP_DIR', realpath('./'));
3.
require(APP_DIR.'/protected/lib/speed.php');