The only fields you need are the ones I mentioned - the rest can use default settings - heres an sql script for setting a new password;
Code:
UPDATE login_accounts SET password=md5("newpassword") WHERE name = 'joeblow';
I haven't tested it yet, so you might have to play with the syntax.
You could default all your passwords to 'mini' then have them email you their username with new password if they want it changed.
You could also get real 'fancy' and set up a php page so they can do it themselves (anybody does this, I want a copy too!)
Quote:
Originally Posted by Aldest
Thank you Angel, I'll try this out and report back.
Do I even need to include IP or is that filled in by the server?
|