1

我一直在debug-toolbar这里结合各种线程的建议,但不知何故无法让它发挥作用。请提供一些帮助。

  1. 我没有在本地开发。托管代码的服务器是 WebFaction 服务器,我正在本地机器上的浏览器中对其进行测试。debug-toolbar安装在服务器上,我可以在服务器的PYTHONPATH.

  2. 使用的 IP 地址是 ( request.HTTP_X_FORWARDED_FOR, request.REMOTE_ADDR)的元组

  3. 当我在本地机器上的新 Django 测试项目中使用这些相同的调试工具栏设置时,它可以工作。

  4. 一篇文章提到使用 show_toolbar 并返回 True 会使所有 IP 地址检查无效。我也尝试过(如下)无济于事。

  5. (编辑)这适用于外壳。我可以跑python manage debugsqlshell

settings.py

DEBUG = True

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'debug_toolbar.middleware.DebugToolbarMiddleware',
)


INSTALLED_APPS = (
    ....
    'debug_toolbar',   # last in list
)

# Debug toolbar settings
INTERNAL_IPS = ('x.x.x.x', 'y.y.y.y') 
# This is IP address from request.HTTP_X_FORWARDED_FOR and request.REMOTE_ADDR that I see when I put an assert 0 in the code.
# When I got desperate, I also tried adding'127.0.0.1', '10.0.2.2' to no avail


DEBUG_TOOLBAR_PANELS = (
    'debug_toolbar.panels.version.VersionDebugPanel',
    'debug_toolbar.panels.timer.TimerDebugPanel',
    'debug_toolbar.panels.settings_vars.SettingsVarsDebugPanel',
    'debug_toolbar.panels.headers.HeaderDebugPanel',
    'debug_toolbar.panels.request_vars.RequestVarsDebugPanel',
    'debug_toolbar.panels.template.TemplateDebugPanel',
    'debug_toolbar.panels.sql.SQLDebugPanel',
    'debug_toolbar.panels.signals.SignalDebugPanel',
    'debug_toolbar.panels.logger.LoggingPanel',
)

# One post mentioned that using show_toolbar and returning True voided all the IP address checks. Trying it
def show_toolbar(request):
    return True

DEBUG_TOOLBAR_CONFIG = {
    'INTERCEPT_REDIRECTS': False,
    'SHOW_TOOLBAR_CALLBACK': show_toolbar,
    'HIDE_DJANGO_SQL': False,
    'TAG': 'div',
}

page.html: ...

<body id="try">
    <meta http-equiv="content-type" content="text/html"; charset="UTF-8">
    ...stuff...
</body>

现在,我在这里没有看到什么?

4

1 回答 1

1

你的:不应该 <meta http-equiv="content-type" content="text/html"; charset="UTF-8"> 是这个吗? <meta http-equiv="Content-Type" content="text/html; charset=utf8" />

于 2013-05-07T12:37:41.463 回答