NATS4 Password Retrieval

From TMM Wiki
Jump to navigationJump to search
NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
Skins and Templates Admin
The Skins and Templates Admin
Skins
Templates
Site Templates
Language Skins
Language Files
custom_errors.php
Join Page Variables
Skipping NATS Join Form
Post URL Variables
Member Usernames & Passwords
Form Validation
Username Recommendations
Password Retrieval
Post-Biller Templates
Geo-Target Join Options
Random Usernames and Passwords
Smarty
Smarty print array
Smarty Plugins
Available Smarty Functions
Affiliate Support Template
Adding a Verification Image
Custom Program and Campaign Selection Pages
Output An Affiliate's Last Paid Date
Affiliate Signup Email
Affiliate Join Page Linkcodes
Approval/Upgrade/Denial Variables
Approval/Upgrade/Denial Template Variables
CSS Theme Builder

NATS has the ability to send lost or forgotten passwords to your members. The password retrieval script you will be using will ask for their email address, as well as a NATS member I.D. number. It will then retrieve the user's email from the NATS database and email them their lost password.

If a member forgot their password, you can either post directly to the forgotten password script, or enable the password retrieval form template.

NATS also has the ability to allow a member to update their password to a new password, provided the member has their current password, config "MEMBER_PASSWORD_UPDATE" is enabled & the parameter update=1 is passed into password.php

Automated Password Retrieval

You can use either of the following methods to retrieve a member's forgotten password with your own script.

Retrieving Passwords by Username and Email

If you would like to retrieve the member's password by using their username and email address, you can sent an HTTP GET to the following URL:

http://linkdomain/signup/password.php?siteid=~siteid~&username=~username~&email=~email_address~&submit=1

Make the following replacements in the above URL to set the variables:

  • Replace linkdomain with your linkdomain
  • Replace ~siteid~ with your site's I.D. number.
  • Replace ~username~ with the member's username
  • Replace ~email_address~ with the member's email address

Optional: Instead of siteid=~siteid~, you can use siteids=~siteids~:

  • If you use this, replace ~siteids~ with a comma-seperated list of siteids you wish to search. NATS will use the first siteid found on this list in order to determine which member it sends the reminder email to.

Retrieving Passwords by Member I.D.

If you want to retrieve the member's password by using their member I.D., as opposed to their username and password, you can send a HTTP GET to the following URL:

http://linkdomain/signup/password.php?siteid=~siteid~&memberid=~memberid~&submit=1

Make the following replacements in the above URL to set the variables:

  • Replace linkdomain with your linkdomain
  • Replace ~siteid~ with your site's I.D. number
  • Replace ~memberid~ with the member's I.D. number

Retrieving Username and Password by Email

If you want to retrieve the member's username and password by using their email, you will need to turn off the configuration "RETRIEVAL_REQUIRE_USERNAME". This configuration can be found under the following section:

  • "Misc" section of the Configuration admin.


Once this is turned off, you can send an HTTP GET to the following URL:

http://linkdomain/signup/password.php?siteid=~siteid~&email=~email_address~&submit=1

Make the following replacements in the above URL to set the variables:

  • Replace linkdomain with your linkdomain
  • Replace ~siteid~ with your site's I.D. number
  • Replace ~email_address~ with the member's email address

Retrieving Passwords through the Built-in Template

If you do not want to use automated password retrieval scripts, you can instead have surfers submit their information to the password retrieval template in NATS. NATS will then check the information in their submission, and send the member a lost password email if the credentials are correct. To direct your members to this form, send them the following URL:

http://linkdomain/signup/password.php?siteid=~siteid~

Simply replace linkdomain with your linkdomain and ~siteid~ with the actual site id in NATS.

Three templates found in your Sites Admin are associated with this password retrieval feature. To access these templates, select the site you wish to affect and click the "Edit Site Templates" icon.

  • member_password -- Members enter their username and email on this template, and NATS redisplays this page if there was an error on submission.

Member Password Template

  • member_password_sent -- Members see this template after the reminder mail is sent.

Member Password Sent Template

  • mail_member_password -- This is the body of the reminder email.

Mail Member Password Template

Updating Member Password

If you would like to allow the member to update their password to a new password, you can automate by sending a HTTP GET to the following URL:

http://linkdomain/signup/password.php?&update=1&siteid=~siteid~&username=~username~&email=~email_address~&old_password=~old_password~&new_password=~new_password~&submit=1

To update their password to a new password the following needs to be enabled:

  • The config "MEMBER_PASSWORD_UPDATE" needs to be enabled
  • The parameter update=1 is passed into /signup/password.php script
  • By default, member must have their current password, username, email in order to update password

See Also