Err: Controller name '2021' is not correct!
- /data/home/qxu1587600374/htdocs/wlb/lib/speed.php on line 64
59.
$__action = isset($_REQUEST['a']) ? strtolower($_REQUEST['a']) : 'index';
60.
if(!empty($__module)){
61.
if(!is_available_classname($__module))err("Err: Module name '$__module' is not correct!");
62.
if(!is_dir(APP_DIR.DS.ADDONS.DS.$__module.DS.'controller'))err("Err: Module '$__module' is not exists!");
63.
}
64.
65.
if(!is_available_classname($__controller))err("Err: Controller name '$__controller' is not correct!");
spl_autoload_register('inner_autoload');
66.
function inner_autoload($class){
67.
GLOBAL $__module;
68.
if(!empty($__module)){
69.
$dirarr[]=ADDONS.DS.$__module.DS.'model';
- /data/home/qxu1587600374/htdocs/index.php on line 9
4.
define('APP_DIR', realpath('./'));
5.
define ('SITE_DOMAIN', strip_tags ( $_SERVER ['HTTP_HOST'] ) );
6.
define ('SITE_PATH', dirname ( __FILE__ ) );
7.
define('SYSNAME', "后臺管理系統");
8.
define('IN',true);
9.
require(APP_DIR.'/wlb/lib/speed.php');