[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
appnamespace = "Application"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.params.displayExceptions = 0
這是config檔案下的設定檔,我剛接觸PHP,能告訴我一下這個配置怎麼搞麼
回複討論(解決方案)
Class 'Zend_Application_Bootstrap_Bootstrap' not found
總是提示這一句,這是需要匯入那個架構或者檔案夾,怎麼匯入啊,菜鳥求教
根據字面意思猜一下。
phpSettings.display_startup_errors = 0//顯示啟動錯誤
phpSettings.display_errors = 0//顯示錯誤提示
includePaths.library = APPLICATION_PATH "/../library"//架構核心代碼的位置
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"//bootstrap的位置,Bootstrap是Twitter推出的一個用於前端開發的開源工具包
bootstrap.class = "Bootstrap"
appnamespace = "Application" //項目代碼檔案夾的名字
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" //控制器檔案的位置
resources.frontController.params.displayExceptions = 0//顯示異常
根據字面意思猜一下。
phpSettings.display_startup_errors = 0//顯示啟動錯誤
phpSettings.display_errors = 0//顯示錯誤提示
includePaths.library = APPLICATION_PATH "/../library"//架構核心代碼的位置
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"//bootstrap的位置,Bootstrap是Twitter推出的一個用於前端開發的開源工具包
bootstrap.class = "Bootstrap"
appnamespace = "Application" //項目代碼檔案夾的名字
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" //控制器檔案的位置
resources.frontController.params.displayExceptions = 0//顯示異常
大神,我這有個代碼,你能幫我看看使用什麼寫的麼,該怎麼配,我發給你吧,我就是在CDSN下的