allthebest 發表於 2021-2-21 02:50:10

discuz论坛禁止一些用户组用“收听”功能来发广告的方法!

<br /><br />首先找到文件<br /><br />打开\source\include\spacecp\spacecp_follow.php文件<br /><br />找到如下代码<br /><br /><ol><li>$special = intval($_GET['special']) ? intval($_GET['special']) : 0;</ol><br /><br />然后直接替换为<br /><br /><ol><li>$special=0;<br /><li>if(in_array($_G['groupid'], array(4,5,6,7,8,9,10,20))) {<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;showmessage('您所在会员组不允许关注他人'); <br /><li>}else<br /><li>{<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;$special = intval($_GET['special']) ? intval($_GET['special']) : 0;<br /><li>}</ol><br /><br />其中<br />array(4,5,6,7,8,9,10,20)就是你所有需要禁止收听功能的用户组ID,这个大家根据自己论坛的配置依次填写即可。<br /><br />这样问题完美解决了。<br /><br />广告党就无法再利用这Bug发广告了!找到<em>, </em>文件<em>, </em>spacecp<em>, </em>禁止<em>, </em>收听
頁: [1]
查看完整版本: discuz论坛禁止一些用户组用“收听”功能来发广告的方法!