확장기능:UserThrottle

From mediawiki.org
This page is a translated version of the page Extension:UserThrottle and the translation is 31% complete.
미디어위키 확장 기능 설명서
UserThrottle
출시 상태: 관리되지 않음
구현 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.