Err: Method 'actiondd' of 'otherController' is not exists!
- /data1/www/htdocs/569/speedphp/1/protected/lib/speed.php on line 483
478.
}
479.
}
480.
function _err_router($msg){
481.
Global $__module, $__controller, $__action;
482.
if(!method_exists('BaseController', 'err404')){
483.
484.
err($msg);
}else{
485.
BaseController::err404($__module, $__controller, $__action, $msg);
486.
}
487.
}
488.
function _err_handle($errno, $errstr, $errfile, $errline){
- /data1/www/htdocs/569/speedphp/1/protected/lib/speed.php on line 77
72.
if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
73.
if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
74.
}
75.
if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
76.
if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
77.
78.
if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
79.
$controller_obj = new $controller_name();
80.
$controller_obj->$action_name();
81.
82.
if($controller_obj->_auto_display){
- /data1/www/htdocs/569/speedphp/1/index.php on line 3
1.
<?php
2.
define('APP_DIR', realpath('./'));
3.
require(APP_DIR.'/protected/lib/speed.php');