Err: Method 'actionnewsdetails' of 'programController' is not exists!
- /www/wwwroot/test.com/protected/lib/speed.php on line 512
507.
}
508.
}
509.
function _err_router($msg){
510.
Global $__module, $__controller, $__action;
511.
if(!method_exists('BaseController', 'err404')){
512.
513.
err($msg);
}else{
514.
BaseController::err404($__module, $__controller, $__action, $msg);
515.
}
516.
}
517.
function _err_handle($errno, $errstr, $errfile, $errline){
- /www/wwwroot/test.com/protected/lib/speed.php on line 93
88.
// _err_router("页面不存在!");
89.
$url = url("pc/main","index");
90.
header("Location:".$url);
91.
exit;
92.
};
93.
94.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
95.
$controller_obj = new $controller_name();
96.
$controller_obj->$action_name();
97.
98.
if($controller_obj->_auto_display){
- /www/wwwroot/test.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');