さくらレンタルサーバでのsmartyの設定
プログラム初心者なのですが、以下教えて頂けないでしょうか。
さくらレンタル(スタンダード)にsmartyを設置を試みているのですが、エラーメッセージが出てしまいます。
環境:PHP 5.2.6 / Smarty 2.6.19
/home/(アカウント)/www/libs/smartyの直下にSmarty.class.php以下、公式サイトからダウンロードしたものをそのままアップし、/home/アカウント/www/smartytest/helloの直下に以下のファイルをアップしました。
(index.php)
<?php
define('SMARTY_DIR','/home/アカウント/www/libs/smarty/');
define('SMARTY_TEST','/home/アカウント/www/smartysample/hello/');
require_once(SMARTY_DIR.'Smarty.class.php');
$smarty = new Smarty;
$smarty->template_dir = SMARTY_TEST.'templates/';
$smarty->compile_dir = SMARTY_TEST.'templates_c/';
$smarty->config_dir = SMARTY_TEST.'configs/';
$smarty->cache_dir = SMARTY_TEST.'cache/';
$smarty->assign('msg','Hello World!');
$smarty->display('index.tpl');
?>
そして、このindex.phpにアクセスすると、下記のようなエラーメッセージが表示されます。
Warning: Smarty::require_once(/home/アカウント/www/libs/smarty/internals/core.write_compiled_resource.php) [smarty.require-once]: failed to open stream: No such file or directory in /home/アカウント/www/libs/smarty/Smarty.class.php on line 1429
Fatal error: Smarty::require_once() [function.require]: Failed opening required '/home/アカウント/www/libs/smarty/internals/core.write_compiled_resource.php' (include_path='.:/usr/local/php-5.2.6/lib/php') in /home/アカウント/www/libs/smarty/Smarty.class.php on line 1429
Smarty.class.phpの1429行目に問題があるのかとファイルを開いてみたものの、初心者のためよく理解できません。あと、Smarty.class.phpを呼び出すのに絶対パスを指定しているのは、さくらの管理画面からphp.iniでinclude_pathを指定しようとしても、うまくいかなかったためです(上記の場合、$smarty = new Smarty;を削除すれば、エラー画面は表示されません。変わりに何も表示されませんが・・)。
初心者のため、基本的なところで見落としがあるのかもしれませんが、教えて頂ければと思います。どうか、宜しくお願いします。
お礼
そうですか? 自分で勉強します。