I am facing a weird problem in django. I am using django-compress app. Till debug is true everything goes all right. When I do debug=False, I face the internal server error problem in case of 404 and page without js and css in case of no 404. Worst part is, on console I am getting following error
UncompressableFileError: 'css/default.css' isn't accesible via COMPRESS_URL ('/static/') and can't be compressed [16/Jul/2012 17:17:05] "GET /static/img/favicon.ico HTTP/1.1" 500 59
Like this it shows 500 for every GET request which are accessible through /static/
So now reason for not getting js and css is clear. But reason for getting error on 404 page is not clear.
Even I tried it disabling and enabling django-compress, but on enabling even normal pages show 404 error
Please let me know what is causing 500 error for all /static/ things and why 404 page gives internal server error.