README.txt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --------------------------------------------------------------------------------
  2. Friendly Register
  3. --------------------------------------------------------------------------------
  4. Maintainers:
  5. * Andrew M Riley
  6. Project homepage: http://drupal.org/project/friendly_register
  7. Friendly Register module allows users to see if a username or email address has
  8. already been used during registration before they submit the form. This module
  9. checks the database and returns an error if the username is already in use. In
  10. addition to checking the username the module checks if there is already an
  11. account using that email address, if there is, a message is displayed with
  12. links to the login or reset password pages.
  13. Installation
  14. ------------
  15. * Install this module into the appropriate modules directory and enable it.
  16. See: https://drupal.org/node/895232 for more information.
  17. * Make sure you have cron running on a regular basis (at least once per 24 hours)
  18. Verification
  19. ------------
  20. * On your site, log out.
  21. * Try to create an account using a pre-existing user name or email address.
  22. * If the module is working, an immediate error message should appear below that
  23. field stating either the user name is unavailable or that the email is
  24. already registered.
  25. Permissions
  26. -----------
  27. There is only one permission for this module and it is completely optional. Set
  28. "Ignore Flood Checking" for a role if you wish them to not be checked by the
  29. 300 query a day limit. I would recommend against giving the "anonymous" role
  30. this permission.
  31. Developers
  32. -----------
  33. If you wish to use Friendly Register with your module:
  34. 1) Add the friendly-register-name or friendly-register-mail class to your
  35. field(s).
  36. 2) In your module, call friendly_register_load_resources() after adding the
  37. classes. This will usually happen inside the function that adds the classes.
  38. See friendly_register_form_user_register_form_alter() for an example.