cakePHP導入 XREA+について
同じタイトルの質問から、検索して辿り着いたURL
http://massat.jp/2007/01/08/110
を参考にXrea+ (有料版)の設定をしています。
しかし、動いてなさげです。
ディレクトリツリー: root /
この直下に、cakephpをインストールしました。
次に、
mv -r root/cakephp/app/webroot/* root/public_html/dev.hoge.com/.
でファイルを移動。
移動先のdev.hoge.com/index.phpを、
if (!defined('ROOT')) {
define('ROOT', DS.'cakephp');
}
/**
* The actual directory name for the "app".
*
*/
if (!defined('APP_DIR')) {
define('APP_DIR', 'app');
}
/**
* The absolute path to the "cake" directory, WITHOUT a trailing DS.
*
*/
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
define('CAKE_CORE_INCLUDE_PATH', ROOT);
}
と、編集しました。
これでいい筈なので、一緒にパッケージれていたtest.phpも、同じ内容で編集しました。
test.phpを実行させると、次のエラーが出ます。
Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit in safe mode in /virtual/taokato/public_html/dev.bit-station.com/test.php on line 27
Warning: include(cake/bootstrap.php) [function.include]: failed to open stream: No such file or directory in /virtual/taokato/public_html/dev.bit-station.com/test.php on line 84
Warning: include() [function.include]: Failed opening 'cake/bootstrap.php' for inclusion (include_path='/cakephp:/cakephp/app/:.:/usr/local/lib/php') in /virtual/taokato/public_html/dev.bit-station.com/test.php on line 84
Fatal error: CakePHP core could not be found. Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php. It should point to the directory containing your /cake core directory and your /vendors root directory. in /virtual/taokato/public_html/dev.bit-station.com/test.php on line 85
これは、設定ミスをしているのでしょうか?
解説通りにしたはずなんですけど・・・。
参考にしたURL
http://oshiete1.goo.ne.jp/qa5421358.html
http://www.wakatta-blog.com/cakephpxrea.html
http://www.cakephp.jp/doc/ch03s04.html#id4797748
http://massat.jp/2007/01/08/110
ご教示のほど、よろしくお願いします。