Manual:$wgTempAccountCreationThrottle/ja

From Linux Web Expert

<translate> Access</translate>: $wgTempAccountCreationThrottle
Number of temporary accounts each IP address may create per specified period(s).
<translate> Introduced in version:</translate>1.42.0 (Gerrit change 1008111; git #08fef956)
<translate> Removed in version:</translate><translate> still in use</translate>
<translate> Allowed values:</translate>(配列)
<translate> Default value:</translate>下記参照

詳細

Number of temporary accounts each IP address may create per specified period(s).

既定値

<syntaxhiglight lang=php> /**

* Number of temporary accounts each IP address may create per specified period(s).
*
* @par Example
* @code
* $wgTempAccountCreationThrottle = [
*  // no more than 100 per month
*  [
*   'count' => 100,
*   'seconds' => 30*86400,
*  ],
*  // no more than 6 per day
*  [
*   'count' => 6,
*   'seconds' => 86400,
*  ],
* ];
* @endcode
*
* @see self::AccountCreationThrottle for the regular account version of this throttle.
* @warning Requires $wgMainCacheType to be enabled
*
* @since 1.42
*/

$wgTempAccountCreationThrottle = [ [ 'count' => 6, 'seconds' => 86400, ] ]; </syntaxhiglight>