Smartyを使用してPHPのプログラムを開発しています。
設定を進めていたところ、下記のようなエラー表示が出ました。
PHP Fatal error: Uncaught exception 'SmartyException' with message 'Unable to load template file
ファイルに記述したソースコードは以下の通りです。
/Smart/lib/smarty_setup.php
`
require_once 'Smarty.class.php';
class SmartySetup extends Smarty {
function SmartySetup() {
$this->template_dir = SMARTY_DIR . "templates";
$this->compile_dir = SMARTY_DIR . "templates_c";
$this->cache_dir = SMARTY_DIR . "cache";
$this->config_dir = SMARTY_DIR . "configs";
$this->left_delimiter = "<!--{"; $this->right_delimiter = "}-->";
}
}
/public_html/smarty.php
require_once("../../Smarty/libs/smarty_setup.php");
$smarty = new Smarty();
$smarty->display("smarty.tpl");
`
Smartyはおろか、PHPも分からないことが多いので、非常に困っています。
PHP初心者にも理解できるよう、分かりやすく教えていただけると助かります。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2014/08/28 00:38
2014/09/01 16:38