Manual:$wgAccountCreationThrottle/de

Category:MediaWiki configuration settings/de#AccountCreationThrottleCategory:MediaWiki configuration settings introduced in version 1.3.0/de#AccountCreationThrottleCategory:MediaWiki configuration settings still in use/de#AccountCreationThrottleCategory:Permission variables/de#AccountCreationThrottle
Zugang: $wgAccountCreationThrottle
Anzahl der Accounts, die eine IP-Adresse erstellen darf. Zum Deaktivieren auf 0 setzen.
Eingeführt in Version:1.3.0
Entfernt in Version:Weiterhin vorhanden
Erlaubte Werte:(Ganzzahl oder Array)
Standardwert:Siehe unten

Details

Hier kann die Anzahl der Accounts angegeben werden, die von einer einzigen IP-Adresse innerhalb von 24 Stunden erstellt werden dürfen (um die Beschränkung aufzuheben auf 0 setzen).

Accounts, die von Benutzern mit dem noratelimit-Recht erstellt werden, werden nicht gezählt.

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

Standardwert

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 per day, 0 to disable.
 *
 * @warning Requires $wgMainCacheType to be enabled
 */
$wgAccountCreationThrottle = 0;

Siehe auch


References

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