Re: django registration error

2020-02-05 Thread N Rupesh
On Wed, Feb 5, 2020 at 3:40 PM wrote: > > > > > You might not have applied migrations > > python manage.py makemigrations > > python manage.py migrate > > > > *From: *nrupesh08 > *Sent: *Wednesday, February 5, 2020 2:18 PM > *To: *Django users > *Subject: *django registration error > > > > > >

Re: django registration error

2020-02-05 Thread N Rupesh
okay On Wed, Feb 5, 2020 at 3:40 PM wrote: > > > > > You might not have applied migrations > > python manage.py makemigrations > > python manage.py migrate > > > > *From: *nrupesh08 > *Sent: *Wednesday, February 5, 2020 2:18 PM > *To: *Django users > *Subject: *django registration error > > >

RE: django registration error

2020-02-05 Thread dhruvashah1221999
  You might not have applied migrationspython manage.py makemigrationspython manage.py migrate From: nrupesh08Sent: Wednesday, February 5, 2020 2:18 PMTo: Django usersSubject: django registration error  -- You received this message because you are subscribed to the Google Groups "Django users" grou

Re: django registration error

2020-02-05 Thread maninder singh Kumar
Are you using mutiple databases and perhaps django is looking in the wrong place for auth_user ? could you post the entire error and your settings.py file [image: --] Maninder Kumar [image: http://]about.me/maninder.s.kumar On Wed, Feb 5, 20

Re: Django Registration Error (Does not return from SMTP call)

2008-04-28 Thread Szaijan
Just as an update, I was told that due to a security change at GMail, libgmail is not currently functional, which certainly matches with my complete inability to get it functioning as an SMTP sever for my django-registration install. Returning to local SMTP, I finally got it functioning on Debian

Re: Django Registration Error (Does not return from SMTP call)

2008-04-25 Thread Szaijan
Previously, when I'd used libgmail, I got an error, rather than the failure to return behavior I am getting using sendmail. When I comment out the EMAIL settings in settings.py, and using the libgmail fix, I get the following error: error at /visionary/accounts/register/ (49, "Can't assign reque

Re: Django Registration Error (Does not return from SMTP call)

2008-04-25 Thread Szaijan
Thanks stranger, this is what I tried originally (libgmail and the suggested alteration to django-registration), but got the same behavior. No help there. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django user

Re: Django Registration Error (Does not return from SMTP call)

2008-04-24 Thread stranger
Hey, I think you should take a look at this. I used this and its working fine. http://www.djangosnippets.org/snippets/141/ Do remember to install 'libgmail' module inorder to get this working. On Apr 24, 10:55 am, Szaijan <[EMAIL PROTECTED]> wrote: > I am building my first Django app and tr