DEBUG=False. I am using the same configuration file mentioned at http://askbot.org/doc/deployment.html Is there an issue with permissions ? What permissions are needed for django-project and other directories ?
kintali ( 2012-04-29 14:54:02 -0500 )editWith DEBUG=False you have to serve static files yourself - via the webserver. With DEBUG=True django will serve static files. For production it is very inefficient to serve static files via python (django). It could be that files are inaccessible to the webserver process. It could be for example because one of the directories above the static files being inaccessible to the effective user that runs the webserver process.