확장기능:UserThrottle
![]() | This extension is incompatible with MediaWiki 1.33 or any later release! You are advised against using this extension on a live site. Volunteer developers are invited to pledge their efforts to updating this extension to make it compatible with MediaWiki 1.39 by replacing the {{Incompatible }} template with {{Incompatible |version=1.33|pledge=~~~~}} . |
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
![]() 출시 상태: 관리되지 않음 |
|
---|---|
구현 | access (invalid type) |
설명 | Throttle on user account registrations |
만든 이 | Brion Vibber (Brion VIBBER토론) |
MediaWiki | |
라이선스 | GNU General Public License 2.0 or later |
다운로드 | |
Quarterly downloads | 0 |
UserThrottle 확장 기능 번역 (translatewiki.net에서 가능한 경우) | |
이 확장기능은 뭘까요
Monitors global frequency of user account registrations and throttles apparent flood attacks, regardless of origin. Not always suitable for use on large public sites, but it's been used during occasional particular vandal attacks on Wikimedia in the past.
설치
To install this extension, add the following to LocalSettings.php :
require_once("$IP/extensions/UserThrottle/UserThrottle.php");
설정
You can adjust the throttle settings in $wgGlobalAccountCreationThrottle:
$wgGlobalAccountCreationThrottle = array(
'min_interval' => 5, // Hard minimum time between creations
'soft_time' => 300, // Timeout for rolling count
'soft_limit' => 10, // 10 registrations in five minutes
);
If you legitimately have signup floods, you may wish to adjust these.