README 295 B

123456789101112131415161718
  1. The UserLimit plugin limits the number of users who can register.
  2. Installation
  3. ============
  4. add "addPlugin('UserLimit');"
  5. to the bottom of your config.php
  6. Settings
  7. ========
  8. maxUsers: The number of maximum users allowed.
  9. Example
  10. =======
  11. addPlugin('UserLimit', array(
  12. 'maxUsers' => 42
  13. ));