Django admin urls return INVALID REQUEST! - Django

Posted by RadiantHex on Stack Overflow See other posts from Stack Overflow or by RadiantHex
Published on 2010-06-09T09:57:13Z Indexed on 2010/06/09 11:12 UTC
Read the original article Hit count: 407

Filed under:
|
|

Hi folks,

my admin urls are sat behind a prefix by doing the following.

1#

(r'^admin/', include(admin.site.urls)),

is placed within urls_core.py

2#

(r'^api/', include('project.urls_core')),

is palced within urls.py


All admin URLs work fine except app indexes.

If I go to any URL such as:

  • /api/admin/core/
  • /api/admin/registration/
  • /api/admin/users/
  • /api/admin/filters/

I receive 'INVALID REQUEST' as my response. Status code is 200 (OK) though.


I have never received this error message before.

Does anyone have a clue? Thanks guys!

© Stack Overflow or respective owner

Related posts about python

Related posts about django