いきなり実行すると、色んなエラーが出る。一つずつ処理する。
まずは
1 2 | Your tmp directory is NOT writable. |
chmodでtmpディレクトリを707にする。
http://cakephpdev.seesaa.net/category/6469856-1.htmlを参考。
次に良く分からないエラー 必ず出るらしい。
1 2 3 4 | Please change the value of 'Security.salt' in app/Config/core.php to a salt value specific to your application [CORE/Cake/Utility/Debugger.php, line 809] Please change the value of 'Security.cipherSeed' in app/Config/core.php to a numeric (digits only) seed value specific to your application [CORE/Cake/Utility/Debugger.php, line 813] |
この2つはセットみたい。 http://ameblo.jp/itboy/day-20120809.htmlを参考。
適当に自分で暗号打つだけでいいみたい。ほんとだ、直った。超適当に打ったんだけど。桁数も適当。
これも必ず出るエラー。
1 2 3 4 | include_once(/private/var/www/localhost/yca2013/app/Config/database.php) [function.include-once]: failed to open stream: No such file or directory [CORE/Cake/Model/ConnectionManager.php, line 68] include_once() [function.include]: Failed opening '/private/var/www/localhost/yca2013/app/Config/database.php' for inclusion (include_path='/private/var/www/localhost/yca2013/lib:.:/opt/local/lib/php') [CORE/Cake/Model/ConnectionManager.php, line 68] |
同じくhttp://ameblo.jp/itboy/day-20120809.htmlを参考。
最後に、このエラーはdatabase.phpの中身を修正してOK
1 2 | Cake is NOT able to connect to the database. |
http://eight-smile.com/blog/web/cakephp%E3%82%92%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%97%E3%81%A6%E3%81%BF%E3%81%BE%E3%81%97%E3%81%9F%E3%80%82/を参考。
最後にこのサイトの通りにデータベースを作成して完了。 http://www.phpbook.jp/cakephp/install/index2.html