2๐
โ
I contacted my host and they said that
your scripts have been getting
automatically killed by our Process
Watcher script due to your sites going
over Memory limits on the shared
server.
๐
๐คGezim
0๐
Are you using fastcgi?
It seems, that this problem accures with very big or long apges, as written in one of the topics. One of the users said, that enabling gzip helped.
django-fcgi.py:
#!/usr/bin/python
from flup.server.fcgi_fork import WSGIServer
#from flup.server.fcgi import WSGIServer
from flup.middleware.gzip import GzipMiddleware
from django.core.handlers.wsgi import WSGIHandler
handler = WSGIHandler()
handler = GzipMiddleware(handler)
WSGIServer(handler).run()
๐คSilver Light
- [Answered ]-Delete pieces of Session on browser close
- [Answered ]-How can I use Django built-in filters with Jinja2 using Appengine SDK?
- [Answered ]-Django โ Generate shortest random slug
- [Answered ]-Django Feed setting number of items to return in URL parameter
Source:stackexchange.com