Err: Module 'brick4' is not exists!
- /usr/local/nginx/html/brick4/protected/lib/speed.php on line 470
465.
}
466.
}
467.
function _err_router($msg){
468.
Global $__module, $__controller, $__action;
469.
if(!method_exists('BaseController', 'err404')){
470.
471.
err($msg);
}else{
472.
BaseController::err404($__module, $__controller, $__action, $msg);
473.
}
474.
}
475.
function _err_handle($errno, $errstr, $errfile, $errline){
- /usr/local/nginx/html/brick4/protected/lib/speed.php on line 70
65.
}
66.
$controller_name = $__controller.'Controller';
67.
$action_name = 'action'.$__action;
68.
if(!empty($__module)){
69.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
70.
71.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
}
72.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
73.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
74.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
75.
$controller_obj = new $controller_name();
- /usr/local/nginx/html/brick4/index.php on line 5
1.
<?php
2.
include("301.inc.php");
3.
session_start();
4.
define('APP_DIR', realpath('./'));
5.
require(APP_DIR.'/protected/lib/speed.php');