Err: Module 'i' is not exists!
- /usr/home/syu8145830001/htdocs/protected/lib/speed.php on line 481
476.
}
477.
}
478.
function _err_router($msg){
479.
Global $__module, $__controller, $__action;
480.
if(!method_exists('BaseController', 'err404')){
481.
482.
err($msg);
}else{
483.
BaseController::err404($__module, $__controller, $__action, $msg);
484.
}
485.
}
486.
function _err_handle($errno, $errstr, $errfile, $errline){
- /usr/home/syu8145830001/htdocs/protected/lib/speed.php on line 71
66.
$controller_name = $__controller.'Controller';
67.
$action_name = 'action'.$__action;
68.
69.
if(!empty($__module)){
70.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
71.
72.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
}
73.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
74.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
75.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
76.
- /usr/home/syu8145830001/htdocs/index.php on line 4
1.
<?php
2.
// phpinfo();exit();
3.
define('APP_DIR', realpath('./'));
4.
require(APP_DIR.'/protected/lib/speed.php');