I think the problem is that you are using the old admin.site.root. You should use the include(admin.site.urls) form instead.
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#hooking-adminsite-instances-into-your-urlconf Hope that helps! Alex On Mar 2, 12:01 am, ssteinerX <[email protected]> wrote: > This app worked under 1.1 most recently and works under the dev server > in 1.2. > > I got it set up the last way it ran under 1.2 and the the app all > seems to work fine, but the admin won't even come up at all; just > hangs the server. > > The apache logs show nothing about the /admin request at all which > makes me thing it's getting hung up before it even figures out what to > ask Apache for. > > I'm using the new style URL patterns like: > > (r'^admin/doc/', include('django.contrib.admindocs.urls')), > (r'^admin/(.*)', admin.site.root), > > and it's just hangin... > > Anyone seen this? Any advice would be much appreciated; my brain > hurts. > > Thanks, > > S > SteinerX > Steve Steiner -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

