Re: 404 errors reported as 500 errors

2012-05-04 Thread James Hargreaves
This is a double post, sorry. The below issue has now been resolved - I defined a custom 404 handler some time ago. I removed this previously but forgot to remove the definition from urls.py! handler404 = application.views.handler404 On 3 May 2012 22:58, James Hargreaves wrote: > Thanks for yo

Re: 404 errors reported as 500 errors

2012-05-03 Thread James Hargreaves
Thanks for your reply Kurtis. They are sym-links. I have tried with a plain HTML file too but to no avail. So far as I know when Django CMS cannot match the URL it throws an Http404 error as you would expect. Indeed that is what I am seeing when I set DEBUG = True in settings. I assume that ther

Re: 404 errors reported as 500 errors

2012-05-03 Thread Kurtis Mullins
Are those symlinks? It might be worth seeing if that's part of the problem (although doubtful that it would be). If that's not the problem, does Django-CMS have its own specialized 404 handling? I've never used it but it's a couple of ideas to try out. On Thu, May 3, 2012 at 10:03 AM, James Hargre

404 errors reported as 500 errors

2012-05-03 Thread James Hargreaves
Hello, I have created a website using Django CMS: http://www.trailer-traders.co.uk When I visit a URL on this site that does not exist in Django CMS I get a 500 error - eg: http://www.trailer-traders.co.uk/xxx I was expecting a 404 error. Before you say it I don't think this is caused by Dja