パーミッションの書き換えやらDBの設定をする必要があるみたいですね。忘れないうちに設定方法を備忘録として残しておこうと思います。
お約束
自分用備忘録なので参照は自己責任で...備忘録
パーミッションを書き換える /app/tmp/app/tmp/cache/
/app/tmp/cache/persistent/
/app/tmp/cache/models/
Security.saltとSecurity.cipherSeedの設定値を適当なものに書き換える
# vi /app/config/core.php /** * A random string used in security hashing methods. */ Configure::write('Security.salt', 'DYhG93b0qyJfIxfs2guVoUubWwvniR2G0FgaC9mi'); /** * A random numeric string (digits only) used to encrypt/decrypt strings. */ Configure::write('Security.cipherSeed', '76859309657453542496749683645');mysqlにログイン、データベースを作ってユーザーを割り当てる。
データベース用の設定ファイル名を書き換える。
#mv /app/config/database.php.default /app/config/database.phpデータベース情報をかく
# vi /app/config/database.php var $default = array( 'driver' => 'mysql', 'persistent' => false, 'host' => 'localhost', 'login' => 'user', 'password' => 'password', 'database' => 'database_name', 'prefix' => '', );オールグリーン。とりあえずOK