Err: Method 'actionnews_detail' of 'mainController' is not exists!
- /www/wwwroot/mxszpt.com/protected/lib/speed.php on line 1573
1568.
}
1569.
1570.
function _err_router($msg){
1571.
Global $__module, $__controller, $__action;
1572.
if(!method_exists('BaseController', 'err404')){
1573.
1574.
err($msg);
}else{
1575.
BaseController::err404($__module, $__controller, $__action, $msg);
1576.
}
1577.
}
1578.
function _err_handle($errno, $errstr, $errfile, $errline){
- /www/wwwroot/mxszpt.com/protected/lib/speed.php on line 115
110.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
111.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
112.
}
113.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
114.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
115.
116.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
117.
$controller_obj = new $controller_name();
118.
$controller_obj->$action_name();
119.
120.
if($controller_obj->_auto_display){
- /www/wwwroot/mxszpt.com/index.php on line 4
1.
<?php
2.
3.
define('APP_DIR', realpath('./'));
4.
5.
require(APP_DIR.'/protected/lib/speed.php');
6.
error_reporting(E_ALL);
7.
ini_set('display_errors', 'On');
8.
9.