본문 바로가기
미디어위키

Manual $wgAccountCreationThrottle

by 다움위키 2023. 12. 29.
Access: $wgAccountCreationThrottle
Number of accounts each IP address may create, 0 to disable.
Introduced in version: 1.3.0
Removed in version: still in use
Allowed values: (array)
Default value: See below
Other settings: Alphabetical | By function

Details

단일 IP 주소 (등록되지 않은 사용자이든 등록된 사용자이든)에서 24시간 이내에 만들 수 있는 계정의 숫자로의 제한이며, 비활성화하려면 0입니다.

noratelimit 권한을 갖는 사용자로부터 계정 생성은 계산되지 않습니다.

현재 위키미디어 재단 위키에서는 6으로 설정되어 있습니다. $wgMainCacheType는 작동하기 위한 이 설정에 대해 CACHE_NONE 이외의 값으로 설정되어야 합니다.

보안 문자를 사용할 때, 실패한 보안 문자 시도가 IP 주소에 대한 계정 생성의 숫자를 증가시킵니다. 보안 문자가 구현되어 있고 계정 생성 제한을 매우 낮게 설정하려면 이 점을 염두에 두십시오. T233704를 참조하십시오

Default value

MediaWiki version:
≥ 1.28
/**
 * Number of accounts each IP address may create per specified period(s).
 *
 * @par Example:
 * @code
 * $wgAccountCreationThrottle = [
 *  // no more than 100 per month
 *  [
 *   'count' => 100,
 *   'seconds' => 30*86400,
 *  ],
 *  // no more than 10 per day
 *  [
 *   'count' => 10,
 *   'seconds' => 86400,
 *  ],
 * ];
 * @endcode
 *
 * @warning Requires $wgMainCacheType to be enabled
 */
$wgAccountCreationThrottle = [ [
	'count' => 0,
	'seconds' => 86400,
] ];
MediaWiki versions:
1.3 – 1.27
/**
 * Number of accounts each IP address may create, 0 to disable.
 *
 * @warning Requires $wgMainCacheType to be enabled
 */
$wgAccountCreationThrottle = 0;

See also