随着环境系统及PHP版本越来越多,碰到的问题也就越来越多,今天织梦无忧网技术在帮客户安装默认织梦dedecms5.7 SP2程序后,点击系统基本参数、SQL命令行工具、防采集串混淆空白无效,我们就来解决这一问题。
修改系统文件:common.func.php ,路径为: /include/common.func.php
找到代码(大概96-99行):
if (function_exists('openssl_random_pseudo_bytes')) { return openssl_random_pseudo_bytes($length); } |
删除!
找到代码(大概66行-69行):
if (empty($length) OR ! ctype_digit((string) $length)) { return FALSE; } |
再其下面增加代码:
if (function_exists('openssl_random_pseudo_bytes')) { return openssl_random_pseudo_bytes($length); } |
如图所示:
上一篇:
下一篇:
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!