骑士cms3.6安装后网站首页页面里没有内容的解决方法
时间:6年前 阅读:5110
骑士cms3.6安装后 首页显示空白 后台可以登陆
这里可能是服务器不支持3.6的安全过滤函数
需要更改include目录下的common.inc.php 和plus.common.inc.php文件
把 $_GET,$_POST,$_COOKIE,$_REQUEST修改为3.5的过滤函数 addslashes_deep
在common.fun.php文件中添加3.5的过滤函数addslashes_deep
以下是3.5过滤函数的代码
function addslashes_deep($value) { if (empty($value)) { return $value; } else { if (!get_magic_quotes_gpc()) { $value=is_array($value) ? array_map('addslashes_deep', $value) : mystrip_tags(addslashes($value)); } else { $value=is_array($value) ? array_map('addslashes_deep', $value) : mystrip_tags($value); } return $value; } } function mystrip_tags($string) { $string = new_html_special_chars($string); $string = remove_xss($string); return $string; } function new_html_special_chars($string) { $string = str_replace(array('&', '"', '<', '>'), array('&', '"', '<', '>'), $string); $string = strip_tags($string); return $string; } function remove_xss($string) { return $string; }
本站声明:网站内容来源于网络,如有侵权,请联系我们https://www.qiquanji.com,我们将及时处理。
微信扫码关注
更新实时通知
网友评论