↑の画像の一番下の黄色行
1 2 |
Your database configuration file is NOT present. Rename APP/Config/database.php.default to APP/Config/database.php |
これは、\app\config\database.phpがないよエラーの為、
\app\config\database.php.defaultをコピーして\app\config\database.phpを作る。
再アクセスすると・・・
エラーが別のメッセージに変わります。
1 2 |
CakePHP is NOT able to connect to the database. Database connection "Mysql" is missing, or could not be created. |
先ほどのファイル\app\config\database.phpを開いてDBの設定をしてあげます。
1 2 3 4 5 6 7 8 9 10 |
public $default = array( 'datasource' => 'Database/Mysql', 'persistent' => false, 'host' => 'localhost', 'login' => 'root', 'password' => 'password', 'database' => 'test_local', 'prefix' => '', //'encoding' => 'utf8', ); |
DBの準備をします。
1 |
$ mysql -uroot |
1 2 |
mysql > create database test_local; mysql > grant all on test_local.* to 'root'@'localhost' identified by 'password'; |
この状態でリロードすると黄色のメッセージが消えて緑色で以下が表示されました。
1 |
CakePHP is able to connect to the database. |