公式サイトのダウンロードサイト(github)からダウンロードする。
# wget https://github.com/cakephp/cakephp/archive/2.6.7.tar.gz
# tar xzvf 2.6.7.tar.gz
vhosts ├ cake │ ├ app・・・Appディレクトリ。 │ ├ cake・・・cakeモジュール。 ├ htdocs │ ├ webroot・・・Document Root。app/webrootをコピー。
-) define('ROOT', dirname(dirname(dirname(__FILE__)))); +) define('ROOT', dirname(dirname(dirname(__FILE__))) .DS .'cake');
46行目
-) define('APP_DIR', basename(dirname(dirname(__FILE__)))); +) define('APP_DIR', 'app');
# chmod -R 707 cake/app/tmp
-) Configure::write('Security.salt', 'DYhG93b0qyJfIxfs2guVoUubWwvniR2G0FgaC9mi'); +) Configure::write('Security.salt', '****************************************');
-) Configure::write('Security.cipherSeed', '76859309657453542496749683645'); +) Configure::write('Security.cipherSeed', '11111111111111111111111111111');
cp cake/app/config/database.php.default cake/app/config/database.php
var $default = array( 'driver' => 'mysql', 'persistent' => false, 'host' => 'localhost', 'login' => 'user', 'password' => 'password', 'database' => 'database_name', 'prefix' => '', );
cd cake/app/Plugin git clone https://github.com/cakephp/debug_kit.git vi cake/app/config/bootstrap.php +) CakePlugin::loadAll(); // Loads all plugins at once
http://cakeserver.com/
黄色い網掛けで警告が表示されていれば、適宜修正する。