September 30, 2011

CakePHPメモ

自分メモ。
■インストールと設定
▼DL
https://github.com/cakephp/cakephp/downloads


▼初期メッセージと設定
(1)
Please change the value of 'Security.salt' in app/Config/core.php to a
salt value specific to your application
>> app/config/core.php の Security.salt 値を変更

(2)
Please change the value of 'Security.cipherSeed' in app/Config/core.php
to a numeric (digits only) seed value specific to your application
>> app/config/core.php の Security.cipherSeed 値を変更

(3)
Your database configuration file is NOT present.
>> app/config/database.php.default を app/config/database.php としてコピー

(4)
Cake is NOT able to connect to the database.
>> app/config/database.php を適切に設定


▼ドキュメント
http://book.cakephp.org/ja/


▼参考
http://cakephp-guide.com/install/edit