Search Results

3
votes

What Hosting Service is best for Django applications?

@Patrick: the big issue with hosting a Django app on Google App Engine is that GAE requires you to use BigTable for storage, and that isn't (and likely won't be) …
2
votes

Why does Django generate HTTP 500 errors for static media when Debug is set to False?

It sounds like you might be trying to serve your static media using the Django development server. Take a look at ht …