On Jan 26, 10:00 am, Jeff Green <jeffhg2...@gmail.com> wrote:
> I found out what my problem was.
> It seems that in my urls.py I recently changed
> admin.site.root to admin.site.urls which has been deprecated.
> Once I changed it back to admin.site.root the admin interface was working in
> oracle
>
> Is it possible that the code for oracle is still referencing admin.site.root
> instead of
> admin.site.urls?

The backend should be completely agnostic of this change, and I can
confirm that admin.site.urls displays the model instances correctly
when using the oracle backend.  I suspect there is something else
going on here.

I wonder if your admin site urlconf is correct.  Note that when
migrating, you need to change the regular expression also: r'^admin/
(.*)$' becomes simply r'^admin/'.

Hope this helps,
Ian

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

Reply via email to