路由錯誤,請檢查控制器目錄下是否存在該控制器/動作。
- D:\freehost\sizhou\web\SpeedPHP\spFunctions.php on line 17
12.
spLaunch("router_prefilter");
13.
// 對將要訪問的控制器類進行實例化
14.
$handle_controller = spClass($__controller, null, $GLOBALS['G_SP']["controller_path"].'/'.$__controller.".php");
15.
// 調用控制器出錯將調用路由錯誤處理函數
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
18.
eval($GLOBALS['G_SP']["dispatcher_error"]);
exit;
19.
}
20.
// 路由并執行用戶代碼
21.
$handle_controller->$__action();
22.
// 控制器程序運行完畢,進行模板的自動輸出
- D:\freehost\sizhou\web\index.php on line 15
10.
$spConfig['controller_path'] = APP_PATH.'/modules/'.basename(__FILE__,".php");
11.
12.
// 載入SpeedPHP框架
13.
require(SP_PATH."/SpeedPHP.php");
14.
require("functions.php");
15.
spRun(); // SpeedPHP 3新特性