Manual:$wgAccountCreationThrottle
Appearance
Outdated translations are marked like this.
| Erişim: $wgAccountCreationThrottle | |
|---|---|
| Her IP adresinin oluşturabileceği hesap sayısı, devre dışı bırakmak için 0. |
|
| Sürümde tanıtıldı: | 1.3.0 |
| Sürümde kaldırıldı: | hala kullanımda |
| İzin verilen değerler: | (integer or array) |
| Varsayılan değer: | Aşağıya bakınız |
| Diğer ayarlar: Alfabetik | İşlevsel olarak | |
Ayrıntılar
Tek bir IP adresinden (kayıtsız veya kayıtlı kullanıcıya göre) 24 saatlik bir süre içinde oluşturulabilecek hesap sayısını sınırlayın, devre dışı bırakmak için 0.
noratelimit hakkı olan kullanıcılardan hesap oluşturma sayılmaz.
The ExemptFromAccountCreationThrottle hook can also be used to exempt an IP address.
When the throttle is hit, the AuthenticationAttemptThrottled hook gets called.
Şu anda Wikimedia Vakfı vikilerinde 6 olarak ayarlanmıştır.[1]
Bu ayarın çalışması için $wgMainCacheType, CACHE_NONE dışında bir değere ayarlanmalıdır.
Bir captcha kullanırken, başarısız captcha denemeleri IP adresi için hesap oluşturma sayısını artırır. Bir captcha uyguladıysanız ve hesap oluşturma sınırını çok düşük ayarlamak istiyorsanız bunu aklınızda bulundurun. T233704 sayfasına bakın
Varsayılan değer
| MediaWiki sürümü: | ≥ 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 sürümleri: | 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;
Ayrıca bakınız
$wgTempAccountCreationThrottle$wgTempAccountNameAcquisitionThrottle$wgPasswordAttemptThrottle- resetAuthenticationThrottle.php
- Extension:ThrottleOverride
- Wikimedia vikileri için hız sınırında geçici bir artış talep etme süreci