View Single Post
  #113  
Old 04-03-2009, 05:49 PM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

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 View Post
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?

Last edited by Angelox; 04-04-2009 at 05:07 AM.. Reason: Fixed and tested as working
Reply With Quote