Re: root_path in admin sites is None

2010-08-03 Thread Filip Gruszczyński
I have set: admin.site.root = '' in settings.py and this helped. I can't right now check publishing server (I am sick at home), but I know, that we are using mod_wsgi and I am pretty sure, that we use Django 1.2 (at least I have username with a dot there, which wasn't possible earlier ;-)). Is t

Re: root_path in admin sites is None

2010-07-24 Thread Gautier
do you still have this problem? If so, can you tell how do you publish your django application (Apache/ mod_wsgi ...), and check that you actually use Django 1.2. And if you don't please tell it too, so that the ticket you opened can be closed. Cheers On Jun 23, 6:00 pm, Filip Gruszczyński wro

Re: root_path in admin sites is None

2010-06-23 Thread Filip Gruszczyński
> before: ('^admin/(.*)', admin.site.root), > > after: (r'^admin/', include(admin.site.urls)), Well, I had to change it before and about two weeks ago I changed it too (this is how my urls.py looks like): (r'^admin/doc/', include('django.contrib.admindocs.urls')), # (r'^admin/(.*)', admin

Re: root_path in admin sites is None

2010-06-23 Thread carlos
i have the same problem i fixed: in urls.py root proyect before: ('^admin/(.*)', admin.site.root), after: (r'^admin/', include(admin.site.urls)), it work good now!!! bye 2010/6/23 Filip Gruszczyński > After migrating to 1.2 I encountered a problem in admin panel. My > change password ang logo