Err: Module 'newera' is not exists!

44.  $__controller = isset($_REQUEST['c']) ? strtolower($_REQUEST['c']) : 'main';
45.  $__action = isset($_REQUEST['a']) ? strtolower($_REQUEST['a']) : 'index';
46. 
47.  if (!empty($__module)) {
48.      if (!is_available_classname($__module)) err("Err: Module name '$__module' is not correct!");
49.      if (!is_dir(APP_DIR DS 'protected' DS 'controller' DS $__module)) err("Err: Module '$__module' is not exists!");
50.  }
51. 
52.  if (!is_available_classname($__controller)) err("Err: Controller name '$__controller' is not correct!");
53.  spl_autoload_register('inner_autoload');
54.  function inner_autoload ($class) {
10.      $_POST['m'] = $argv[1];
11.      $_POST['c'] = $argv[2];
12.      $_POST['a'] = $argv[3];
13.  }
14.  require(APP_DIR.'/protected/lib/helper.php');
15.  require(APP_DIR.'/protected/lib/es.php');
16.