POST TIME:2021-05-17 23:51
解决方法:在后台“系统基本设置--其他选项”里先看下是否有两个新变量为:cfg_disable_tags和cfg_disable_funs,把cfg_disable_tags值去除php,并保存,重新生成html,就能恢复正常。
如果没有这两个变量,那么可以手动添加这两个函数到其他选项里面,变量类型全部选择多行文本
模板引擎禁用PHP函数:cfg_disable_funs值为:phpinfo,eval,exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source,file_put_contents,fsockopen,fopen,fwrite
模板引擎禁用标签:cfg_disable_tags去除php
最后保存-生成html,就能恢复正常了
注意:如果以前是手动更新dedecms补丁的,那么极有可能漏掉sql补丁,可以先复制以下代码到SQL命令行工具-->SQL命令行中,确定一下。然后就出现了系统--系统基本参数---其他选项 ---模板引擎禁用标签
代码如下:
INSERT INTO `inyhow_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 `inyhow_sysconfig` (`varname`, `info`, `groupid`, `type`, `value`) VALUES ('cfg_disable_tags', '模板引擎禁用标签', 7, 'bstring', 'php');