一聚教程网:一个值得你收藏的教程网站

热门教程

织梦CMS提示 Error:Tag disabled:"php" more...解决技巧

时间:2022-06-25 19:25:30 编辑:袖梨 来源:一聚教程网

出现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');
INSERT INTO `dede_sysconfig` (`varname`, `info`, `groupid`, `type`, `value`) VALUES ('cfg_disable_tags', '模板引擎禁用标签', 7, 'bstring', 'php');

这样执行之后就可以了,非常的简单。

热门栏目