我在localhost上運行我的CakePHP項目。當我填寫表格,點擊提交按鈕後顯示以下錯誤:數據源丟失
Missing Datasource Configuration
Error: The datasource configuration Array was not found in database.php.
我其實是一個數據源配置它,它看起來像:
類DATABASE_CONFIG {
public $default = array(
'datasource' => 'Database/Postgres',
'persistent' => false,
'host' => 'localhost',
'login' => 'arwinder',
'password' => 'root',
'database' => 'sh_db',
'prefix' => '',
//'encoding' => 'utf8',
);
public $test = array(
'datasource' => 'Database/Postgres',
'persistent' => false,
'host' => 'localhost',
'login' => 'arwinder',
'password' => 'root',
'database' => 'sh_db',
'prefix' => '',
//'encoding' => 'utf8',
);
} 。 ..但它被忽略。
其實我配置它,它看起來像: 公共$默認=陣列( \t \t '數據源'=>'數據庫/ Postgres的, \t \t '執着'=>假, \t \t '主機'= > '本地主機', \t \t '登錄'=> 'arwinder', \t \t '密碼'=> '根', \t \t '數據庫'=> 'sh_db', \t \t '前綴'=>' ', \t \t //'encoding'=>'utf8', \t); 但它被忽略。 – 2013-02-25 17:31:44
請使用您問題下方的「編輯」鏈接。 – 2013-02-25 17:32:45
請告訴我解決方案。 – 2013-02-25 17:40:57