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

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

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

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

django registration error

2020-02-05 Thread nrupesh08
[image: error.png] -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https:

Re: Registration error

2013-06-24 Thread Deepak Sharma
Hi, @Marcin Thanks for the help. I changed whatever you said but new error occurred. error at /accounts/register/ [Errno 2] No such file or directory My url.py file is like this from django.conf.urls.defaults import * from django.views.generic import TemplateView from django.contrib import adm

Re: Registration error

2013-06-24 Thread Marcin Szamotulski
On 16:12 Mon 24 Jun , Deepak Sharma wrote: > On Mon, Jun 24, 2013 at 3:58 PM, Tom Evans wrote: > > > > Looks like you've updated your {% url %} tags to quote the view name, > > and in this case, you've quoted both the view name and the argument > > that should be used. This leads django to not

Re: Registration error

2013-06-24 Thread Deepak Sharma
On Mon, Jun 24, 2013 at 3:58 PM, Tom Evans wrote: > > Looks like you've updated your {% url %} tags to quote the view name, > and in this case, you've quoted both the view name and the argument > that should be used. This leads django to not find the view name. > > Eg: {% url "email_validation_pro

Re: Registration error

2013-06-24 Thread Tom Evans
On Mon, Jun 24, 2013 at 11:24 AM, Deepak Sharma wrote: > I am running an application everything running properly but when i > trying to sign-up it displays an error > > NoReverseMatch at /accounts/register/ > Reverse for 'email_validation_process key' with arguments '()' and > keyword arguments '{

Registration error

2013-06-24 Thread Deepak Sharma
I am running an application everything running properly but when i trying to sign-up it displays an error NoReverseMatch at /accounts/register/ Reverse for 'email_validation_process key' with arguments '()' and keyword arguments '{}' not found. Error during template rendering In template /usr/l

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

Django Registration Error (Does not return from SMTP call)

2008-04-24 Thread Szaijan
I am building my first Django app and trying to incorporate django- registration. Whenever a link gets clicked that calls for sending mail to a user, the page loads continually with no timeout. No errors are generated and no URL info appears in STDOUT or STDERR when running on the dev server. T

Django Registration Error (Does not return from SMTP call)

2008-04-24 Thread Szaijan
I am building my first Django app and trying to incorporate django- registration. Whenever a link gets clicked that calls for sending mail to a user, the page loads continually with no timeout. No errors are generated and no URL info appears in STDOUT or STDERR when running on the dev server. T