4

CIBonfireを使用して最初のアプリを作成しており、それを本番環境にプッシュする準備ができていますが、モードを開発モードから本番モードに変更して、フッターにプロファイラーが表示されないようにする方法がわかりません。

どの設定メニューやドキュメントでも見つけることができませんでした。どんな助けでも大歓迎です。

4

1 に答える 1

12

index.phpCI-Bonfire のファイル内。define('ENVIRONMENT', 'development')ここでこのスポットを見つけることができます。define('ENVIRONMENT', 'production')

 * You can load different configurations depending on your
 * current environment. Setting the environment also influences
 * things like logging and error reporting.
 *
 * This can be set to anything, but default usage is:
 *
 *     development
 *     testing
 *     production
 *
 * NOTE: If you change these, also change the error_reporting() code below
 *
 */
    define('ENVIRONMENT', 'production');
于 2013-06-10T01:19:43.220 に答える