Difference between revisions of "Member Usernames & Passwords"
TMMStephenY2 (talk | contribs) |
TMMStephenY2 (talk | contribs) m |
||
Line 14: | Line 14: | ||
* '''REUSE_MATCHING_USERNAME''' - Allows the member to add a new subscription to an existing account when the username and e-mail address match. | * '''REUSE_MATCHING_USERNAME''' - Allows the member to add a new subscription to an existing account when the username and e-mail address match. | ||
* '''NO_RANDOM_PASSWORDS''' - Does not allow [[NATS]] to create a random password for members signing up without passwords. | * '''NO_RANDOM_PASSWORDS''' - Does not allow [[NATS]] to create a random password for members signing up without passwords. | ||
− | * '''UNIQUE_MEMBER_NAMES''' - Determines whether or not members on separate sites can have the same username. For more information, please see our [[NATS4_Configuration_Admin#UNIQUE_MEMBER_NAMES|UNIQUE_MEMBER_NAMES]] writeup. | + | * '''[[UNIQUE_MEMBER_NAMES]]''' - Determines whether or not members on separate sites can have the same username. For more information, please see our [[NATS4_Configuration_Admin#UNIQUE_MEMBER_NAMES|UNIQUE_MEMBER_NAMES]] writeup. |
* '''MEMBER_GET_NEW_USERNAME''' - Allows [[NATS]] to recommend new usernames to [[Ct#Surfer|surfers]] if their chosen name is already in use. For more information please see our [[NATS4_Configuration_Admin#MEMBER_GET_NEW_USERNAME|MEMBER_GET_NEW_USERNAME]] writeup. | * '''MEMBER_GET_NEW_USERNAME''' - Allows [[NATS]] to recommend new usernames to [[Ct#Surfer|surfers]] if their chosen name is already in use. For more information please see our [[NATS4_Configuration_Admin#MEMBER_GET_NEW_USERNAME|MEMBER_GET_NEW_USERNAME]] writeup. | ||
* '''RANDOM_USERPASS_DISALLOW_LIST''' - Sets disallowed characters for random username and password generation. | * '''RANDOM_USERPASS_DISALLOW_LIST''' - Sets disallowed characters for random username and password generation. |
Revision as of 12:16, 5 August 2010
NATS 3
|
---|
NATS stores members' unencrypted and encrypted passwords by default. However, it also offers a feature that makes NATS only store a member's encrypted password for additional security. You can do this by going to the NATS4 Configuration Admin and going to the "Surfer Configuration" section. There, you will find an setting called MEMBERS_NO_UNENCRYPTED. Simply check this setting if you only want to store encrypted member passwords.
You can also use additional Surfer Configuration settings to set further restrictions or permissions on member passwords and usernames. These settings include:
- MEMBERS_NO_ACTIVE_UNENCRYPTED - Does not store unencrypted passwords for active members only.
- USER_PASS_MATCHOK - Allows the member to have a matching username and password.
- REUSE_MATCHING_USERNAME - Allows the member to add a new subscription to an existing account when the username and e-mail address match.
- NO_RANDOM_PASSWORDS - Does not allow NATS to create a random password for members signing up without passwords.
- UNIQUE_MEMBER_NAMES - Determines whether or not members on separate sites can have the same username. For more information, please see our UNIQUE_MEMBER_NAMES writeup.
- MEMBER_GET_NEW_USERNAME - Allows NATS to recommend new usernames to surfers if their chosen name is already in use. For more information please see our MEMBER_GET_NEW_USERNAME writeup.
- RANDOM_USERPASS_DISALLOW_LIST - Sets disallowed characters for random username and password generation.
- NEVER_RENAME_EXPIRED_MEMBERS - Disallows NATS from renaming any expired members. This will prevent members from signing back up unless REUSE_MATCHING_USERNAME is on.
Limiting Username & Password Length
To limit a member's username and password length, find the following code on the pre-join form template:
<TD class="join_name">Username:</TD><TD class="join_value"><input class="join_input" type="text" name="signup[username:1:6:16:::username_check]" value="{$vars.username}">...
An important section to note is the following: [username:1:6:16:::username_check]
The fields between the colons above are: $name, $required, $min, $max, $compare, $ses_compare, $special, and $convert. Simply change the $max field to the maximum number of characters you would like to be accepted as a username or password.
Reusing Old Usernames
NATS also allows you to reuse old usernames by adding the following variable to your join form template:
<input type="hidden" name="signup[rename_old_member]" value="1">