Re: new password(s)

2005-11-25 Thread stava
I've removed my subclassing alltogether, it all seems to work fine know, I can login and logout and log back in again as expected.

Re: new password(s)

2005-11-25 Thread stava
Trying, trying... 1) from django.models.ttime import * u = User('stava', 'Lars', 'Stavholm', '[EMAIL PROTECTED]', 'password', True, True, '2005-11-25', '2005-11-25') u.save() Traceback (most recent call last): File "tst/tst.py", line 8, in ? u.save() File "/usr/lib/python2.4/site-packages

Re: new password(s)

2005-11-25 Thread stava
I've tried it with trunk, same result.

Re: new password(s)

2005-11-25 Thread stava
Well, I'm using new-admin, and I've extended the auth.user class: class User(auth.User): primary_group = meta.ForeignKey(auth.Group, default = 1, verbose_name = 'primary group') new_password = meta.CharField(maxlength = 40, blank = True) fullname = meta.CharField(m

Re: new password(s)

2005-11-24 Thread Adrian Holovaty
On 11/24/05, stava <[EMAIL PROTECTED]> wrote: > can't seem to get my application user's passwords working properly > after the last changes to the password algorithm. User's with old md5 > passwords can login once, but after that their passwords don't work > anymore. What gives? Hmmm, I can't rep

new password(s)

2005-11-24 Thread stava
Hi all, can't seem to get my application user's passwords working properly after the last changes to the password algorithm. User's with old md5 passwords can login once, but after that their passwords don't work anymore. What gives? Also, is there anyway of using mysql to create the new passwor