Manual:$wgTempAccountCreationThrottle
Appearance
| アクセス権: $wgTempAccountCreationThrottle | |
|---|---|
| Number of temporary accounts each IP address may create per specified period(s). |
|
| 導入されたバージョン: | 1.42.0 (Gerrit change 1008111; git #08fef956) |
| 除去されたバージョン: | 使用中 |
| 許容される値: | (配列) |
| 既定値: | 下記参照 |
| その他の設定: アルファベット順 | 機能順 | |
詳細
Number of temporary accounts each IP address may create per specified period(s).
Example:
$wgTempAccountCreationThrottle = [
// no more than 100 per month
[
'count' => 100,
'seconds' => 30*86400,
],
// no more than 6 per day
[
'count' => 6,
'seconds' => 86400,
],
];
既定値
| MediaWiki バージョン: | ≧ 1.45 |
$wgTempAccountCreationThrottle = [
[
'count' => 1,
'seconds' => 600,
],
[
'count' => 6,
'seconds' => 86400,
]
];
| MediaWiki バージョン: | 1.42 – 1.44 |
$wgTempAccountCreationThrottle = [ [
'count' => 6,
'seconds' => 86400,
] ];