我正在使用 smarty 3 .it 在子文件夹中不起作用。
文件夹结构
WWW
->admin
->cache
->configs
->libs
->plugins
->templates
->templates_c
index.php
在 index.php [根文件夹] 中它工作正常。
但是在 admin/index.php 它不起作用我收到错误。
这是我的代码
require_once('../libs/Smarty.class.php');
$smarty = new Smarty;
$smarty->display('index.tpl');
错误 :
Fatal error: Uncaught exception 'SmartyException' with message 'Unable to load template file 'index.tpl'' in D:\wamp\www\libs\sysplugins\smarty_internal_templatebase.php on line 127
在阅读了一些我添加的stackoverflow答案后$smarty->template_dir = "/templates";
,但我仍然遇到同样的错误。
请帮帮我谢谢