エラー

インストール直後に発生するエラーには次のようなものがあります。

tmpディレクトリの権限不足

書き込み可能にしていないと以下のようなエラーが出力されます。

Warning (512): app/tmp/cache/ is not writable [CORE/cake/libs/cache/file.php, line 276]

'Security.salt'を初期値のまま利用

'Security.salt'の設定を初期値から変更していないと以下の注意が出力されます。
'Security.salt'の値はapp/config/core.phpで設定します。(基本設定

Notice (1024): Please change the value of 'Security.salt' in app/config/core.php to a salt value specific to your application [CORE/cake/libs/debugger.php, line 682]

データベース設定ファイルの不足

データベース設定ファイル('app/config/database.php')が存在しないとエラーが出力されます。
データベース設定ファイルを作成します。(データベース設定

Your database configuration file is NOT present.
Rename config/database.php.default to config/database.php

CakePHP Note (v1.3)

Index