Err: Method 'actionproducts-lighting' of 'mainController' is not exists!
- /www/wwwroot/web.handy-e.com/protected/lib/speed.php on line 1560
1555.
}
1556.
1557.
function _err_router($msg){
1558.
Global $__module, $__controller, $__action;
1559.
if(!method_exists('BaseController', 'err404')){
1560.
1561.
err($msg);
}else{
1562.
BaseController::err404($__module, $__controller, $__action, $msg);
1563.
}
1564.
}
1565.
function _err_handle($errno, $errstr, $errfile, $errline){
- /www/wwwroot/web.handy-e.com/protected/lib/speed.php on line 115
110.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
111.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
112.
}
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.
116.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
117.
$controller_obj = new $controller_name();
118.
$controller_obj->$action_name();
119.
120.
if($controller_obj->_auto_display){
- /www/wwwroot/web.handy-e.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 & ~E_DEPRECATED & ~E_STRICT);
7.
ini_set('display_errors', 'On');
8.
9.