博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Smarty模板Windows下写代码 放到CentOS6.5无法正确解析
阅读量:6118 次
发布时间:2019-06-21

本文共 655 字,大约阅读时间需要 2 分钟。

如题:报错:

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;

      ..................

}

直接在原路径上加 “../”返回到上层路径再解析解决问题。

 

转载于:https://www.cnblogs.com/wuling129/p/4745245.html

你可能感兴趣的文章
Android UI优化——include、merge 、ViewStub
查看>>
Office WORD如何取消开始工作右侧栏
查看>>
Android Jni调用浅述
查看>>
CodeCombat森林关卡Python代码
查看>>
第一个应用程序HelloWorld
查看>>
(二)Spring Boot 起步入门(翻译自Spring Boot官方教程文档)1.5.9.RELEASE
查看>>
Android Annotation扫盲笔记
查看>>
React 整洁代码最佳实践
查看>>
聊聊架构设计做些什么来谈如何成为架构师
查看>>
Java并发编程73道面试题及答案
查看>>
移动端架构的几点思考
查看>>
Tomcat与Spring中的事件机制详解
查看>>
Spark综合使用及用户行为案例区域内热门商品统计分析实战-Spark商业应用实战...
查看>>
初学者自学前端须知
查看>>
Retrofit 源码剖析-深入
查看>>
企业级负载平衡简介(转)
查看>>
ICCV2017 论文浏览记录
查看>>
科技巨头的交通争夺战
查看>>
当中兴安卓手机遇上农行音频通用K宝 -- 卡在“正在通讯”,一直加载中
查看>>
Shell基础之-正则表达式
查看>>