如题:报错:
Unable to load template file 'System/header.htm' in '/var/www/website/cms/Template/Default/Web/Index/index.htm'
结构如下:
Web/Index/index.htm
Web/System/header.htm
index.htm文件第一行如下:
{
{include file="System/header.htm"}}亲,你在windows下设置的路径放到linux下是不行滴!
在linux下不能正确解析相对路径。
后来php哥们给改了,偶刚开始还不会!5555!
改了模板:cms\Core\Library\Vendor\Smarty\sysplugins下的 smarty_internal_template.php
public function getSubTemplate($template, $cache_id, $compile_id, $caching, $cache_lifetime, $data, $parent_scope)
{ // already in template cache? $template = '../'.$template;..................
}
直接在原路径上加 “../”返回到上层路径再解析解决问题。