its really rear this error the aplication its runing in mod_python in a shared web hosting python 2.5.1 and work perfect the only thing is that when i change the DEBUG flag to false the administration interface keep working and autenticate all fine but throwme the 404 error when i try to access the pages that admin my tables.
my urlconf look like this from django.conf.urls.defaults import patterns, include # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = patterns( '', ( r'^admin/', include( admin.site.urls ) ), ( r'', include( 'role.company.urls' ) ), ) and in the role.company.urls i dont put anything about debug or url that can override the admin ones -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.