建站代码网

热门标签

织梦DedeCMS提示Error:Tag disabled:"php" more...!的解决方法

方法:
网站后台-->系统-->系统基本参数-->其他选项-->模板引擎禁用标签-->把php删除掉
补充:
如果没有找到上述方法中的选项可以按如下方法操作
后台-->系统-->系统设置-->SQL命令行工具-->运行如下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');

然后在网站后台-->系统-->系统基本参数-->其他选项-->模板引擎禁用标签-->把php删除掉
X