我有这样一个聪明的结构
/
/cache
/configs
/libs
/templates
/templates/administrator
/cache
/administrator
我希望将相同的模板结构分配给我的 管理员文件夹。我收到错误:
“致命错误:未捕获的异常 'SmartyException' 带有消息 '无法加载模板文件 'administrator/index.tpl”
我使用的代码是
$t = new smarty;
$t->setTemplateDir('.' . DS . 'templates/administrator' . DS)
->setCompileDir('.' . DS . 'templates_c' . DS)
->setPluginsDir(SMARTY_PLUGINS_DIR)
->setCacheDir('.' . DS . 'cache' . DS)
->setConfigDir('.' . DS . 'configs' . DS);