私のファイル構造:
--header.php
--smarty
--templates
-- x.tpl
--cache
--configs
--templates_c
--articles
-- testPage.php
header.phpのコード
$smarty = new Smarty();
$smarty->setTemplateDir('smarty/templates');
$smarty->setCompileDir('smarty/templates_c');
$smarty->setCacheDir('smarty/cache');
$smarty->setConfigDir('smarty/configs');
testPage.phpのコード
<?php
include('../header.php');
$smarty->display('x.tpl');
?>
私はこのエラーにぶつかっています:
PHP Fatal error: Uncaught exception 'SmartyException' with message 'Unable to
load template file 'x.tpl'' in
/usr/local/lib/php/Smarty/sysplugins/smarty_internal_templatebase.php:127
testPage.phpのsmartyテンプレートにアクセスするための正しいパスを設定するにはどうすればよいですか?