[Answered ]-Broken INTERNAL link internal_error.html

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

Leave a comment