织梦CMS提示 Error:Tag disabled:"php" more...解决技巧
发布:smiling 来源: PHP粉丝网 添加日期:2015-11-11 11:29:40 浏览: 评论:0
dedecms中模板中使用了dede:php标签了,只要有这个页面的执行时都会提示Error:Tag disabled:"php" more...错误了,导致这个问题是我们设置中不允许php标签执行了,下面来看看解决办法.
出现DedeCMS Error:Tag disabled:"php" more...!只要简单在后台网站后台--系统--系统基本参数---其他选项 ---模板引擎禁用标签 把里面的php 去掉就行了就可以了,如下图所示。
当然我们还可以使用sql直接操作了,代码如下:
- INSERT INTO `dede_sysconfig` (`varname`, `info`, `groupid`, `type`, `value`) VALUES('cfg_disable_funs', '模板引擎禁用PHP函数', 7, 'bstring', 'phpinfo,eval,exec,passthru,shell_exec,system,proc_open,
- popen,curl_exec,curl_multi_exec,parse_ini_file,show_source,file_put_contents'); --phpfensi.com
- INSERT INTO `dede_sysconfig` (`varname`, `info`, `groupid`, `type`, `value`) VALUES ('cfg_disable_tags', '模板引擎禁用标签', 7, 'bstring', 'php');
这样执行之后就可以了,非常的简单.
Tags: Error:Tag disabled
相关文章
- ·织梦CMS提示 Error:Tag disabled:"php" more...解决技巧(2014-10-17)
- ·dedecms出现DedeCMS Error:Tag disabled:php(2014-11-07)
- ·DedeCMS Error:Tag disabled:"php" more...! (2014-11-07)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)