Re: Admin password field

2006-06-02 Thread [EMAIL PROTECTED]
One solution would be to provide site admin the value for a known generic password. When a new user is created, they get this generic password, then are asked to change it when they log in. But, I agree, you would think the password field in admin could be smart enough to use the set_password() fu

Re: Admin password field

2006-06-01 Thread Todd O'Bryan
On May 30, 2006, at 9:58 AM, James Bennett wrote: > > On 5/30/06, stane <[EMAIL PROTECTED]> wrote: >> to create password open python shell >> import md5 >> md5.new('password').hexdigest() >> >> copy string into password field > > Or use the 'set_password' function defined in Django's au

Re: Admin password field

2006-05-30 Thread James Bennett
On 5/30/06, stane <[EMAIL PROTECTED]> wrote: > to create password open python shell > import md5 > md5.new('password').hexdigest() > > copy string into password field Or use the 'set_password' function defined in Django's auth module. -- "May the forces of evil become confused on the

Re: Admin password field

2006-05-30 Thread stane
to create password open python shell import md5 md5.new('password').hexdigest() copy string into password field Todd O'Bryan wrote: > If you create a user without a password, then go into the Admin > interface to edit the user, it won't let you save unless you enter a > password. >

Admin password field

2006-05-30 Thread Todd O'Bryan
If you create a user without a password, then go into the Admin interface to edit the user, it won't let you save unless you enter a password. While that wouldn't ordinarily be a problem, the password has to be in the form algorithm$salt$hash Am I the only person who can't do these things