Err: Controller 'memberController' is not exists!
- /home/sdb1/wwwroot/chaomi.cc/web/protected/lib/speed.php on line 618
613.
}
614.
615.
function _err_router($msg) {
616.
Global $__module, $__controller, $__action;
617.
if (!method_exists('BaseController', 'err404')) {
618.
619.
err($msg);
} else {
620.
BaseController::err404($__module, $__controller, $__action, $msg);
621.
}
622.
}
623.
- /home/sdb1/wwwroot/chaomi.cc/web/protected/lib/speed.php on line 90
85.
_err_router("Err: Module '$__module' is not exists!");
86.
}
87.
if (!is_available_classname($__controller))
88.
_err_router("Err: Controller '$controller_name' is not correct!");
89.
if (!class_exists($controller_name, true))
90.
91.
_err_router("Err: Controller '$controller_name' is not exists!");
if (!method_exists($controller_name, $action_name))
92.
_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
93.
94.
$controller_obj = new $controller_name();
95.
$controller_obj->$action_name();
- /home/sdb1/wwwroot/chaomi.cc/web/index.php on line 4
1.
<?php
2.
define('APP_DIR', realpath('./'));
3.
define("IMG_KEY", "www.chaomi.cc_poe58sA20151031"); //圖片顯示、加密、解密KEY
4.
require(APP_DIR.'/protected/lib/speed.php');