Manual:$wgAccountCreationThrottle/ko

Category:MediaWiki configuration settings/ko#AccountCreationThrottleCategory:MediaWiki configuration settings introduced in version 1.3.0/ko#AccountCreationThrottleCategory:MediaWiki configuration settings still in use/ko#AccountCreationThrottleCategory:Permission variables/ko#AccountCreationThrottle
Access: $wgAccountCreationThrottle
Number of accounts each IP address may create, 0 to disable.
이 변수가 소개된 버전:1.3.0
이 변수가 사라진 버전:계속해서 쓰이고 있음
허용값:(integer or array)
기본값:아래 참조

자세한 설명

Limit to the number of accounts which may be created within a 24-hour period from a single IP address (whether by unregistered or registered user), 0 to disable.

Account creations from users with the noratelimit right or another rate limiting exemption aren't counted.

The ExemptFromAccountCreationThrottle hook can also be used to exempt an IP address. When the throttle is hit, the AuthenticationAttemptThrottled hook gets called.

It is currently set to 6 on Wikimedia Foundation wikis.[1] $wgMainCacheType must be set to a value other than CACHE_NONE for this setting to work.

When using a captcha, failed captcha attempts increment the number of account creation for the IP address. Have this in mind if you have a captcha implemented and you want to set the account creation limit too low. See T233704

기본값

미디어위키 버전:
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,
] ];
미디어위키 버전:
1.3 1.27
/**
 * Number of accounts each IP address may create per day, 0 to disable.
 *
 * @warning Requires $wgMainCacheType to be enabled
 */
$wgAccountCreationThrottle = 0;

같이 보기


References

Category:MediaWiki configuration settings/ko Category:MediaWiki configuration settings introduced in version 1.3.0/ko Category:MediaWiki configuration settings still in use/ko Category:Permission variables/ko