Re: Doubt : Redirect after registration

2011-07-26 Thread vaibhav agarwal
Hey, @Lior Sion : No I am not using anything other than the default . IN the database the user is created and active ( am able to login manually as the user ) . @Urun : Will try that out .. thanks. Thanks On Jul 26, 12:53 pm, Uros Trebec wrote: > I'm using django-registration and I solved the

Re: Doubt : Redirect after registration

2011-07-26 Thread Uros Trebec
I'm using django-registration and I solved the same problem by using this: http://djangosnippets.org/snippets/1960/ Works like a charm :) Regards, Uros On Jul 26, 8:41 am, Lior Sion wrote: > Are you using anything not defaulted, like django-registration? In the > database - is the user created

Re: Doubt : Redirect after registration

2011-07-25 Thread Lior Sion
Are you using anything not defaulted, like django-registration? In the database - is the user created and the active flag is true? On Jul 24, 2:16 pm, vaibhav agarwal wrote: > Hi, > > I am using Django 1.3. I have started building my first site in django > and it seems real fun . I am learning a

Re: Doubt : Redirect after registration

2011-07-25 Thread vaibhav agarwal
Hi. Yes I did set AUTHENTICATION_BACKENDS to django.contrib.auth.backends.ModelBackend in settings.py . Also doesnt Django by default set AUTHENTICATION_BACKENDS to the value even if I dont set it in the settings.py folder? Inspite of this , the solution hasnt worked :(. Thanks Vaibhav On Jul 24

Re: Doubt : Redirect after registration

2011-07-24 Thread KP
Hi Vaibhav, Just checking - Did you set the AUTHENTICATION_BACKENDS to django.contrib.auth.backends.ModelBackend in settings.py Thanks, KP On Jul 24, 4:16 pm, vaibhav agarwal wrote: > Hi, > > I am using Django 1.3. I have started building my first site in django > and it seems real fun . I am

Doubt : Redirect after registration

2011-07-24 Thread vaibhav agarwal
Hi, I am using Django 1.3. I have started building my first site in django and it seems real fun . I am learning a lot from it . But I have a small problem . I want to login a user after he registers and then redirect him to the home page of the site . For this I tried , the stuff given in the lin