POST TIME:2021-05-17 23:51
解決方法:在后臺(tái)“系統(tǒng)基本設(shè)置--其他選項(xiàng)”里先看下是否有兩個(gè)新變量為:cfg_disable_tags和cfg_disable_funs,把cfg_disable_tags值去除php,并保存,重新生成html,就能恢復(fù)正常。
如果沒(méi)有這兩個(gè)變量,那么可以手動(dòng)添加這兩個(gè)函數(shù)到其他選項(xiàng)里面,變量類(lèi)型全部選擇多行文本
模板引擎禁用PHP函數(shù):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
模板引擎禁用標(biāo)簽:cfg_disable_tags去除php
最后保存-生成html,就能恢復(fù)正常了
注意:如果以前是手動(dòng)更新dedecms補(bǔ)丁的,那么極有可能漏掉sql補(bǔ)丁,可以先復(fù)制以下代碼到SQL命令行工具-->SQL命令行中,確定一下。然后就出現(xiàn)了系統(tǒng)--系統(tǒng)基本參數(shù)---其他選項(xiàng) ---模板引擎禁用標(biāo)簽
代碼如下:
INSERT INTO `inyhow_sysconfig` (`varname`, `info`, `groupid`, `type`, `value`) VALUES ('cfg_disable_funs', '模板引擎禁用PHP函數(shù)', 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', '模板引擎禁用標(biāo)簽', 7, 'bstring', 'php');