Err: Module 'kindeditor' is not exists!
- /www/wwwroot/mxszpt.com/protected/lib/speed.php on line 1573
1568.
}
1569.
1570.
function _err_router($msg){
1571.
Global $__module, $__controller, $__action;
1572.
if(!method_exists('BaseController', 'err404')){
1573.
1574.
err($msg);
}else{
1575.
BaseController::err404($__module, $__controller, $__action, $msg);
1576.
}
1577.
}
1578.
function _err_handle($errno, $errstr, $errfile, $errline){
- /www/wwwroot/mxszpt.com/protected/lib/speed.php on line 111
106.
$controller_name = $__controller.'Controller';
107.
$action_name = 'action'.$__action;
108.
109.
if(!empty($__module)){
110.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
111.
112.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
}
113.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
114.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
115.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
116.
- /www/wwwroot/mxszpt.com/index.php on line 4
1.
<?php
2.
3.
define('APP_DIR', realpath('./'));
4.
5.
require(APP_DIR.'/protected/lib/speed.php');
6.
error_reporting(E_ALL);
7.
ini_set('display_errors', 'On');
8.
9.