Err: Method 'actionimglist ' of 'pcController' is not exists!
- /www/wwwroot/www.hnsfjsh.net/wlb/lib/speed.php on line 97
92.
if(!method_exists($controller_name, $action_name)) {
93.
if(!method_exists('BaseController', 'err404')){
94.
if(!class_exists($controller_name, true)) {
95.
err("Err: Controller '$controller_name' is not exists!");
96.
}else{
97.
98.
err("Err: Method '$action_name ' of '$controller_name' is not exists!");
}
99.
}else{
100.
BaseController::err404($__controller, $__action);
101.
}
102.
}
- /www/wwwroot/www.hnsfjsh.net/index.php on line 15
10.
define('SITE_DOMAIN', strip_tags($_SERVER ['HTTP_HOST']));
11.
define('SITE_PATH', dirname(__FILE__));// 网站根路径设置
12.
13.
define('SYSNAME', "管理系统");
14.
//定义css常量
15.
16.
require(APP_DIR . '/wlb/lib/speed.php');
17.
18.
19.