Err: Module 'img1' is not exists!
- /home/www/protected/lib/speed.php on line 528
523.
<?php }
524. <?php }
525. <?php function _err_router($msg){
526. <?php Global $__module, $__controller, $__action;
527. <?php if(!method_exists('BaseController', 'err404')){
528.
529. <?php err($msg);
<?php }else{
530. <?php BaseController::err404($__module, $__controller, $__action, $msg);
531. <?php }
532. <?php }
533. <?php function _err_handle($errno, $errstr, $errfile, $errline){
- /home/www/protected/lib/speed.php on line 106
101.
<?php $controller_name = $__controller.'Controller';
102. <?php $action_name = 'action'.$__action;
103. <?php
104. <?php if(!empty($__module)){
105. <?php if(!is_available_classname($__module))_err_router("Err: Module '$__module' is not correct!");
106.
107. <?php if(!is_dir(APP_DIR.DS.'protected'.DS.'controller'.DS.$__module))_err_router("Err: Module '$__module' is not exists!");
<?php }
108. <?php if(!is_available_classname($__controller))_err_router("Err: Controller '$controller_name' is not correct!");
109. <?php if(!class_exists($controller_name, true))_err_router("Err: Controller '$controller_name' is not exists!");
110. <?php if(!method_exists($controller_name, $action_name))_err_router("Err: Method '$action_name' of '$controller_name' is not exists!");
111. <?php
- /home/www/index.php on line 3
1.
<?php
2. <?php define('APP_DIR', realpath('./'));
3.
<?php require(APP_DIR.'/protected/lib/speed.php');