Err: Method 'actiontencent' of 'mainController' is not exists!

1568.  }
1569. 
1570.  function _err_router($msg){
1571.      Global $__module$__controller$__action;
1572.      if(!method_exists('BaseController''err404')){
1573.          err($msg);
1574.      }else{
1575.          BaseController::err404($__module$__controller$__action$msg);
1576.      }
1577.  }
1578.  function _err_handle($errno$errstr$errfile$errline){
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_nametrue))_err_router("Err: Controller '$controller_name' is not exists!");
115.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
116. 
117.  $controller_obj = new $controller_name();
118.  $controller_obj->$action_name();
119. 
120.  if($controller_obj->_auto_display){
1.  <?php
2. 
3.  define('APP_DIR'realpath('./'));
4.  require(APP_DIR.'/protected/lib/speed.php');
5. 
6.  error_reporting(E_ALL);
7.  ini_set('display_errors''On');
8. 
9.