Err: Module 'newera' is not exists!
- /www/wwwroot/myftp/web/protected/lib/es.php on line 49
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.
50.
if (!is_dir(APP_DIR . DS . 'protected' . DS . 'controller' . DS . $__module)) err("Err: Module '$__module' is not exists!");
}
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) {
- /www/wwwroot/myftp/web/index.php on line 15
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.
16.
require(APP_DIR.'/protected/lib/es.php');