Smarty Error: Unable to load template file 'Home/aboutplist.htm'
- /home/lyqingfe/domains/lyqingfeng.cn/public_html/Comm/MyFrame/Core/spView.php on line 52
 
47. 
                $this->addfuncs();
48. 
                $this->displayed = TRUE;
49. 
                if($GLOBALS['G_SP']['view']['debugging'] && SP_DEBUG)$this->engine->debugging = TRUE;
50. 
                $this->engine->display($tplname);
51. 
        } catch (Exception $e) {
52. 
53. 
            spError( $GLOBALS['G_SP']['view']['engine_name']. ' Error: '.$e->getMessage() );
        }
54. 
    }
55. 
    
56. 
    /**
57. 
     * 注冊(cè)視圖函數(shù)
- /home/lyqingfe/domains/lyqingfeng.cn/public_html/Comm/MyFrame/Core/spController.php on line 164
 
159. 
            $tplname = $tpl.'/'.$tplname;
160. 
            //echo $tplname; die();
161. 
        }
162. 
163. 
        if(TRUE == $GLOBALS['G_SP']['view']['enabled']){
164. 
165. 
            $this->v->display($tplname);
        }else{
166. 
            extract($this->__template_vals);
167. 
            require($tplname);
168. 
        }
169. 
        if( TRUE != $output )return ob_get_clean();
- /home/lyqingfe/domains/lyqingfeng.cn/public_html/Action/home.php on line 195
 
190. 
                //輸出模板
191. 
                if ($ncatrow['type'] == 1){
192. 
                    $this->display('aboutnlist.htm');
193. 
                }
194. 
                if ($ncatrow['type'] == 2){
195. 
196. 
                    $this->display('aboutplist.htm');
                }                
197. 
            }else{
198. 
                $this->info = spClass('m_company')->spLinker()->find(array('pid'=>$fid));
199. 
                //輸出模板
200. 
                $this->display('about.htm');
- /home/lyqingfe/domains/lyqingfeng.cn/public_html/Comm/MyFrame/spFunctions.php on line 21
 
16. 
    if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17. 
        eval($GLOBALS['G_SP']["dispatcher_error"]);
18. 
        exit;
19. 
    }
20. 
    // 路由并執(zhí)行用戶代碼
21. 
22. 
    $handle_controller->$__action();
    // 控制器程序運(yùn)行完畢,進(jìn)行模板的自動(dòng)輸出
23. 
    if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24. 
        $__tplname = $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25. 
                $__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼裝模板路徑
26. 
        $handle_controller->auto_display($__tplname);
- /home/lyqingfe/domains/lyqingfeng.cn/public_html/index.php on line 25
 
20. 
//加載配置文件
21. 
require(APP_PATH.'/data/config.php');
22. 
//加載框架核心
23. 
require(SP_PATH.'/SpeedPHP.php');
24. 
//執(zhí)行應(yīng)用
25. 
spRun();