discuz上传附件提示Server (IO) Error的解决方法

时间:2022年07月21日

/

来源:网络

/

编辑:佚名

discuz游客发帖,默认是显示ip前面3段的,也就是显示为127.0.0.x。
既然选择了游客发帖,我们也可以尽量的保护游客的ip不被泄漏。
那就修改discuz的文件,改下代码即可:
找到/source/module/forum/forum_viewthread.php文件
查找:if(!$post[‘authorid’]) {
然后具体是这两句:
if(!$post[‘authorid’]) {
$post[‘useip’] = substr($post[‘useip’], 0, strrpos($post[‘useip’], ‘.’)).’.x’;
}
如果只显示前面2段就修改成:
if(!$post[‘authorid’]) {
if($_G[‘adminid’] != 1) {
$tmpip = substr($post[‘useip’], 0, strrpos($post[‘useip’], ‘.’));
$post[‘useip’] = substr($post[‘useip’], 0, strrpos($tmpip, ‘.’)).’.x.x’;
}
}
如果要全部不显示就修改成:
if(!$post[‘authorid’]) {
if($_G[‘adminid’] != 1) {
$tmpip = substr($post[‘useip’], 0, strrpos($post[‘useip’], ‘.’));
 $post[‘useip’] = substr($post[‘useip’], 0, strrpos($tmpip, ‘x’)).’x.x’;
}
}
保存替换下文件就行了,当然记得先备份下原文件,以及修改的地方要备注下。
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。