2017-10-30 4 views

答えて

0

メッセージ(index.php)に記載されているファイルは通常、Codeigniterインストールのルートフォルダにあります。

Codeigniterの通常のファイル構造はこれです。

/root_name (often named 'www' or 'htdocs') 
    /application 
    /system 
    index.php <- Is the file to edit 

調整する必要があるindex.phpのセクションは、次のようになります。

/* 
* --------------------------------------------------------------- 
* SYSTEM DIRECTORY NAME 
* --------------------------------------------------------------- 
* 
* This variable must contain the name of your "system" directory. 
* Set the path if it is not in the same directory as this file. 
*/ 
$system_path = 'system'; 

通常のインストールフォルダ構造を使用する場合、正しいエントリは「システム」です。 'system'フォルダを別の場所に移動した場合や名前を変更した場合は、新しい場所や名前に合わせて$system_pathの値を調整する必要があります。

関連する問題