Err: Method 'actiontechnicaladvantage' of 'mainController' is not exists!
- C:\wwwroot\PrismRiskGuard\prism-risk-guard-web\protected\lib\speed.php on line 509
504.
}
505.
}
506.
function _err_router($msg){
507.
Global $__module, $__controller, $__action;
508.
if(!method_exists('BaseController', 'err404')){
509.
510.
err($msg);
}else{
511.
BaseController::err404($__module, $__controller, $__action, $msg);
512.
}
513.
}
514.
function _err_handle($errno, $errstr, $errfile, $errline){
- C:\wwwroot\PrismRiskGuard\prism-risk-guard-web\protected\lib\speed.php on line 81
76.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
77.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
78.
}
79.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
80.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
81.
82.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
83.
$controller_obj = new $controller_name();
84.
$controller_obj->$action_name();
85.
86.
if($controller_obj->_auto_display){
- C:\wwwroot\PrismRiskGuard\prism-risk-guard-web\index.php on line 7
2.
ini_set("session.cookie_domain","p.renbenzhihui.com");
3.
//error_reporting(E_ALL);
4.
//ini_set('display_errors', '1');
5.
define('APP_DIR', realpath('./'));
6.
define("APP_PATH",dirname(__FILE__));
7.
require(APP_DIR.'/protected/lib/speed.php');