Manual:$wgTempAccountCreationThrottle
Appearance
| Access: $wgTempAccountCreationThrottle | |
|---|---|
| Number of temporary accounts each IP address may create per specified period(s). |
|
| Introduced in version: | 1.42.0 (Gerrit change 1008111; git #08fef956) |
| Removed in version: | Still in use |
| Allowed values: | (array) |
| Default value: | See below |
| Other settings: Alphabetical | By function | |
Details
[edit]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,
],
];
Default value
[edit]| MediaWiki version: | ≥ 1.45 |
$wgTempAccountCreationThrottle = [
[
'count' => 1,
'seconds' => 600,
],
[
'count' => 6,
'seconds' => 86400,
]
];
| MediaWiki versions: | 1.42 – 1.44 |
$wgTempAccountCreationThrottle = [ [
'count' => 6,
'seconds' => 86400,
] ];