无法找到视图文件,页面模板:tpl/404.htm

  • D:\wwwroot\hzx-logistics.com\frphp\lib\View.php on line 72

            $controllerLayout = str_replace(File_TXT,'.html',$controllerLayout);


            if (file_exists($controllerLayout)) {


                $this->template($controllerLayout);


            }else{


                $f = strpos($name,File_TXT)!==false ? $name : $name.File_TXT;


                Error_msg('无法找到视图文件,页面模板:'.$f);


            }


          


        }


        


        

  • D:\wwwroot\hzx-logistics.com\frphp\lib\Controller.php on line 67

    }





    // 渲染视图


    public function display($name=null)


    {


        $this->_view->render($name);


    }


    


    // 获取URL参数值


    public function frparam($str=null, $int=0,$default = FALSE, $method = null){


        

  • D:\wwwroot\hzx-logistics.com\app\home\c\HomeController.php on line 974

            }



            



            exit;



        }



        header("HTTP/1.0 404");



        $this->display($this->template.'/404');



        $this->end_cache($this->cache_file);



        exit;



    }



    



    //开启检查缓存


  • D:\wwwroot\hzx-logistics.com\app\home\c\HomeController.php on line 376

                exit;



            }



            



            



            //错误页面->13505050505            $this->error(JZLANG('输入url错误!'));



            exit;



        }



        



        



        


  • D:\wwwroot\hzx-logistics.com\frphp\fr.php on line 332

                }



            



            }



        }



        $dispatch = new $controller($param);



        $dispatch->$actionName($param);



       



        



        



        



    }


  • D:\wwwroot\hzx-logistics.com\frphp\fr.php on line 94

        spl_autoload_register(array($this, 'loadClass'));



        $this->setDbConfig();



        $this->setReporting();



        $this->removeMagicQuotes();



        //$this->unregisterGlobals();



        $this->route();



        



    }







    // 路由处理



    public function route()


  • D:\wwwroot\hzx-logistics.com\frphp\fr.php on line 462





// 加载配置文件



$config = require(APP_PATH . 'conf/config.php');







//实例化核心类



(new frphp($config))->run();

  • D:\wwwroot\hzx-logistics.com\index.php on line 52




//定义静态文件路径


define('Tpl_style','/static/');





// 加载框架文件


require(APP_PATH . 'frphp/fr.php');





// 就这么简单~