I'm using the latest django-registration (svn).  When I use the login
URL directly, so 'next' is not set, the result of a successful login
drops the user to my document root directory.  I've checked in shall
and LOGIN_REDIRECT_URL is set correctly and being imported correctly,
but it is not being used for some reason.  Everything else is working
properly.

Any suggestions on debugging this would be greatly appreciated.

settings.py excerpt.:

LOGIN_URL = '/visionary/accounts/login/'
LOGOUT_URL = '/visionary/accounts/logout/'
LOGIN_REDIRECT_URL = '/visionary/game/'

urls.py excerpt (NOTE: admin and auth URLs are included from unedited
files.):

from django.conf.urls.defaults import *
from registration.views import activate, register

urlpatterns = patterns('',
    # Example:
    # (r'^visionary/', include('visionary.foo.urls')),

    # Visionary Site Home:
    (r'visionary/$', 'visionary.views.home_view'),

    # User Registration:
    url(r'^visionary/accounts/register/$', register, {'success_url': '/
visionary/accounts/register/complete'}, name='registration_register'),
    (r'^visionary/accounts/', include('registration.urls')),

    # Uncomment this for admin:
    (r'^visionary/admin/', include('django.contrib.admin.urls')),


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to