Err: Controller 'fenlei9680362Controller' is not exists!

523. 
<?php     }
524. 
<?php }
525. 
<?php function _err_router($msg){
526. 
<?php     Global $__module, $__controller, $__action;
527. 
<?php     if(!method_exists('BaseController', 'err404')){
528. 
<?php         err($msg);
529. 
<?php     }else{
530. 
<?php         BaseController::err404($__module, $__controller, $__action, $msg);
531. 
<?php     }
532. 
<?php }
533. 
<?php function _err_handle($errno, $errstr, $errfile, $errline){
104. 
<?php if(!empty($__module)){
105. 
<?php     if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
106. 
<?php     if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
107. 
<?php }
108. 
<?php if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
109. 
<?php if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
110. 
<?php if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
111. 
<?php 
112. 
<?php $controller_obj = new $controller_name();
113. 
<?php $controller_obj->$action_name();
114. 
<?php 
1. 
<?php
2. 
<?php define('APP_DIR', realpath('./'));
3. 
<?php require(APP_DIR.'/protected/lib/speed.php');