On 3/21/07, akonsu <[EMAIL PROTECTED]> wrote: > thanks for your reply. the error that i am getting seems to indicate > that it is not 404.html that is the problem. it cannot find the > handler itself, not the template. and i do have this template, but it > does not help :-)
I assume you're using the standard RegexURLResolver. (If you're not sure, you are. :)) Make sure the module referred to by ROOT_URLCONF has defined 'handler404'. This is typically provided via " from django.conf.urls.defaults import * " in the URLConf because urls.defaults.py includes this: handler404 = 'django.views.defaults.page_not_found' If that doesn't work, please provide the traceback and the code for your ROOT_URLCONF module so I can help more. -Jeremy --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---