码迷,mamicode.com
首页 > Web开发 > 详细

phpcms后台在线编辑模板禁止含有{php标签编辑的解决方法

时间:2015-08-20 12:53:36      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

1、开启后台在线编辑模板功能

找到caches\configs\system.php文件,找到‘tpl_edit‘=> 0,

系统默认是0,开启在线编辑模板功能只需把0改成1

 

2、phpcms禁止含有{php标签的编辑,修改两个文件

一个文件是phpcms/modules/template/file.php

将$code = str_replace(array(‘<?‘,‘{php‘),array(‘<?‘,‘{ php‘),$code);          //注释掉

另一个文件是phpcms\modules\template\templates\file_edit_file.tpl.php

把 function check_form() {
        //if(findInPage("{php")) {
               // alert("在线模板编辑禁止提交含有{php 的标签。");
               // return false;
       // } else if(findInPage("<\?php")) {
           //     alert(‘在线模板编辑禁止提交含有<\?php 的标签。‘);
            //    return false;
       // } else {
         //       myform.submit();
       // }
}

的内容注释掉,这样子就可以在线编辑模板了,为了安全性,并不建议这么做。

 

phpcms后台在线编辑模板禁止含有{php标签编辑的解决方法

标签:

原文地址:http://www.cnblogs.com/sherryZ/p/4744600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!