内部链接断开internal_error.html

时间:2011-04-19 03:55:36

标签: django url hyperlink internal

我一直收到来自django的关于破坏INTERNAL链接的电子邮件。

他们总是指向internal_error.html。虽然没有显示错误。

任何人都知道如何解决这些错误?

以下是电子邮件示例:

  

引荐:   http://www.example.com/subject/590/Philosophy/

     

请求的网址:/subject//internal_error.html

     

用户代理:Mozilla / 5.0(Windows NT 5.1; rv:2.0)Gecko / 20100101 Firefox / 4.0

     

IP地址:xxx.xxx.xxx.xxx

2 个答案:

答案 0 :(得分:2)

我联系了我的主人,他们说那个

  

你的脚本已经开始了   由我们的进程自动杀死   Watcher脚本由于您的网站   超过内存限制共享   服务器

:(

答案 1 :(得分:0)

您使用的是fastcgi吗?

似乎这个问题与one of the topics中写的很大或很长的apges一致。其中一位用户说,启用gzip有帮助。

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()