内部链接损坏internal_error.html

发布于 2024-11-02 01:56:59 字数 467 浏览 0 评论 0原文

我不断收到 django 发来的有关内部链接损坏的电子邮件。

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

有人知道我如何才能找出这些错误的根源吗?

这是一个电子邮件示例:

推荐人: http://www.example.com/subject/590/Philosophy/

请求的 URL:/subject//internal_error.html

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

IP地址:xxx.xxx.xxx.xxx

I keep getting emails from django about broken INTERNAL links.

They're always point to internal_error.html. Although no error is shown.

Anyone know how I can get to the bottom of these errors?

Here's an example email:

Referrer:
http://www.example.com/subject/590/Philosophy/

Requested URL:/subject//internal_error.html

User agent: Mozilla/5.0 (Windows NT 5.1; rv:2.0) Gecko/20100101 Firefox/4.0

IP address: xxx.xxx.xxx.xxx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梅窗月明清似水 2024-11-09 01:56:59

我联系了我的房东,他们说

你的脚本已经得到
被我们的进程自动杀死
由于您的网站正在运行而导致观察者脚本
超过共享内存限制
服务器。

:(

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.

:(

或十年 2024-11-09 01:56:59

你使用fastcgi吗?

看来,这个问题是在非常大或很长的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()

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()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文