Re: 'module' object has no attribute 'handler404'

2007-03-21 Thread akonsu
this helped. thanks. i was not importing the default handler. konstantin > > 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: > ha

Re: 'module' object has no attribute 'handler404'

2007-03-21 Thread Jeremy Dunck
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

Re: 'module' object has no attribute 'handler404'

2007-03-21 Thread akonsu
Scott, 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 :-) konstantin On Mar 21, 6:46 am, "ScottB" <[EMAIL PROTECTED]> wrote:

Re: 'module' object has no attribute 'handler404'

2007-03-21 Thread ScottB
Hi konstantin. On Mar 21, 2:38 am, "akonsu" <[EMAIL PROTECTED]> wrote: > i have no handler404 defined in my application, so when a 404 is > raised the server returns internal server error and an error message > saying 'module' object has no attribute 'han

'module' object has no attribute 'handler404'

2007-03-20 Thread akonsu
hello, i have no handler404 defined in my application, so when a 404 is raised the server returns internal server error and an error message saying 'module' object has no attribute 'handler404' is written in to the log. how to make it use the default 404 view? i am running