1
我們的項目從smarty 2翻轉到smarty 3.當我包括使用包含文件的文件。 它返回Smarty3模板加載相對路徑使用包含文件
錯誤:無法加載模板。
它在smarty 2中工作正常,但翻轉後它不工作在smarty 3任何建議? 在此先感謝
我們的項目從smarty 2翻轉到smarty 3.當我包括使用包含文件的文件。 它返回Smarty3模板加載相對路徑使用包含文件
錯誤:無法加載模板。
它在smarty 2中工作正常,但翻轉後它不工作在smarty 3任何建議? 在此先感謝
嘗試「testInstall」的方法,並且還設置了目錄,你的Smarty實例化後,在本例中爲「$智者」:
[...]
$smarty->setTemplateDir('somedir/templates/');
$smarty->setCompileDir('somedir/templates_c/');
$smarty->setConfigDir('somedir/configs/');
$smarty->setCacheDir('somedir/cache/');
$smarty->testInstall();
exit;