0

バックエンドとフロントエンドでアプリケーションを作成しようとしています。フォルダ構造は次のとおりです(問題を説明するために構成ファイルの位置のみを示します)

+root
|-admin
|-application
  |—backend
    |—config
      |—config.php
  |—frontend
    |—config 
      |—config.php
|-system

バックエンド管理パネルを使用して、バックエンドとフロントエンドの config.php 値の両方で構成値を変更しようとしています。しかし、フロントエンドのconfig.phpファイルで変更できません。これにはデータベースベースのソリューションは必要ありません。

4

1 に答える 1

1

私がこれを手に入れたドキュメントを読む:

Note: CodeIgniter always tries to load the configuration files for the current environment first. If the file does not exist, the global config file (i.e., the one in application/config/) is loaded. This means you are not obligated to place all of your configuration files in an environment folder − only the files that change per environment.

ですから、その情報に基づいて、問題はあなたがそれを呼んでいるとき、おそらくあなたの道の問題だと思います。

于 2012-06-12T21:49:55.110 に答える