Err: Controller 'bulletinController' is not exists!

483.      }
484.  }
485.  function _err_router($msg){
486.      Global $__module$__controller$__action;
487.      if(!method_exists('BaseController''err404')){
488.          err($msg);
489.      }else{
490.          BaseController::err404($__module$__controller$__action$msg);
491.      }
492.  }
493.  function _err_handle($errno$errstr$errfile$errline){
76.  if(!empty($__module)){
77.      if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
78.      if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
79.  }
80.  if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
81.  if(!class_exists($controller_nametrue))_err_router("Err: Controller '$controller_name' is not exists!");
82.  if(!method_exists($controller_name$action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
83. 
84.  $controller_obj = new $controller_name();
85.  $controller_obj->$action_name();
86. 
1.  <?php
2.  define('APP_DIR'realpath('./'));
3.  require(APP_DIR.'/protected/lib/mailer.php');
4.  require(APP_DIR.'/protected/lib/speed.php');