219👍
What is DEBUG
set to? It won’t load unless it’s True
.
If it’s still not working, try adding ‘127.0.0.1’ to INTERNAL_IPS
as well.
UPDATE
This is a last-ditch-effort move, you shouldn’t have to do this, but it will clearly show if there’s merely some configuration issue or whether there’s some larger issue.
Add the following to settings.py:
def show_toolbar(request):
return True
SHOW_TOOLBAR_CALLBACK = show_toolbar
That will effectively remove all checks by debug toolbar to determine if it should or should not load itself; it will always just load. Only leave that in for testing purposes, if you forget and launch with it, all your visitors will get to see your debug toolbar too.
For explicit configuration, also see the official install docs here.
EDIT(6/17/2015):
Apparently the syntax for the nuclear option has changed. It’s now in its own dictionary:
def show_toolbar(request):
return True
DEBUG_TOOLBAR_CONFIG = {
"SHOW_TOOLBAR_CALLBACK" : show_toolbar,
}
Their tests use this dictionary.
98👍
Debug toolbar wants the ip address in request.META[‘REMOTE_ADDR’] to be set in the INTERNAL_IPS setting. Throw in a print statement in one of your views like such:
print("IP Address for debug-toolbar: " + request.META['REMOTE_ADDR'])
And then load that page. Make sure that IP is in your INTERNAL_IPS setting in settings.py.
Normally I’d think you would be able to determine the address easily by looking at your computer’s ip address, but in my case I’m running the server in a Virtual Box with port forwarding…and who knows what happened. Despite not seeing it anywhere in ifconfig on the VB or my own OS, the IP that showed up in the REMOTE_ADDR key was what did the trick of activating the toolbar.
- [Django]-CORS: Cannot use wildcard in Access-Control-Allow-Origin when credentials flag is true
- [Django]-Paginating the results of a Django forms POST request
- [Django]-Django 2, python 3.4 cannot decode urlsafe_base64_decode(uidb64)
73👍
If everything else is fine, it could also be that your template lacks an explicit closing <body>
tag—
- [Django]-How to allow only one radio button to be checked?
- [Django]-How does Django's nested Meta class work?
- [Django]-POST jQuery array to Django
37👍
Docker
If you’re developing with a Django server in a Docker container with docker, the instructions for enabling the toolbar don’t work. The reason is related to the fact that the actual address that you would need to add to INTERNAL_IPS
is going to be something dynamic, like 172.24.0.1.
Rather than trying to dynamically set the value of INTERNAL_IPS
, the straightforward solution is to replace the function that enables the toolbar, in your settings.py
, for example:
DEBUG_TOOLBAR_CONFIG = {
'SHOW_TOOLBAR_CALLBACK': lambda _request: DEBUG
}
This should also work for other dynamic routing situations, like Vagrant or Heroku.
Here are some more details for the curious. The code in django_debug_tool that determines whether to show the toolbar examines the value of REMOTE_ADDR
like this:
if request.META.get('REMOTE_ADDR', None) not in INTERNAL_IPS:
return False
so if you don’t actually know the value of REMOTE_ADDR
due to your dynamic docker routing, the toolbar will not work. You can use the docker network command to see the dynamic IP values, for example docker network inspect my_docker_network_name
- [Django]-Create custom buttons in admin change_form in Django
- [Django]-Embedding JSON objects in script tags
- [Django]-Django QuerySet order
32👍
The current stable version 0.11.0 requires the following things to be true for the toolbar to be shown:
Settings file:
DEBUG = True
INTERNAL_IPS
to include your browser IP address, as opposed to the server address. If browsing locally this should beINTERNAL_IPS = ('127.0.0.1',)
. If browsing remotely just specify your public address.- The debug_toolbar app to be installed i.e
INSTALLED_APPS = (..., 'debug_toolbar',)
- The debug toolbar middleware class to be added i.e.
MIDDLEWARE_CLASSES = ('debug_toolbar.middleware.DebugToolbarMiddleware', ...)
. It should be placed as early as possible in the list.
Template files:
- Must be of type
text/html
- Must have a closing
</html>
tag
Static files:
If you are serving static content make sure you collect the css, js and html by doing:
./manage.py collectstatic
Note on upcoming versions of django-debug-toolbar
Newer, development versions have added defaults for settings points 2, 3 and 4 which makes life a bit simpler, however, as with any development version it has bugs. I found that the latest version from git resulted in an ImproperlyConfigured
error when running through nginx/uwsgi.
Either way, if you want to install the latest version from github run:
pip install -e git+https://github.com/django-debug-toolbar/django-debug-toolbar.git#egg=django-debug-toolbar
You can also clone a specific commit by doing:
pip install -e git+https://github.com/django-debug-toolbar/django-debug-toolbar.git@ba5af8f6fe7836eef0a0c85dd1e6d7418bc87f75#egg=django_debug_toolbar
- [Django]-Sending an SMS to a Cellphone using Django
- [Django]-How to completely dump the data for Django-CMS
- [Django]-Django DRF with oAuth2 using DOT (django-oauth-toolkit)
29👍
I tried everything, from setting DEBUG = True
, to settings INTERNAL_IPS
to my client’s IP address, and even configuring Django Debug Toolbar manually (note that recent versions make all configurations automatically, such as adding the middleware and URLs). Nothing worked in a remote development server (though it did work locally).
The ONLY thing that worked was configuring the toolbar as follows:
DEBUG_TOOLBAR_CONFIG = {
"SHOW_TOOLBAR_CALLBACK" : lambda request: True,
}
This replaces the default method that decides if the toolbar should be shown, and always returns true.
- [Django]-Do django db_index migrations run concurrently?
- [Django]-Using the reserved word "class" as field name in Django and Django REST Framework
- [Django]-How to serve media files on Django production environment?
15👍
I have the toolbar working just perfect. With this configurations:
DEBUG = True
INTERNAL_IPS = ('127.0.0.1', '192.168.0.1',)
DEBUG_TOOLBAR_CONFIG = {'INTERCEPT_REDIRECTS': False,}
- The middleware is the first element in
MIDDLEWARE_CLASSES
:
MIDDLEWARE_CLASSES = ( 'debug_toolbar.middleware.DebugToolbarMiddleware', 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', )
I hope it helps
- [Django]-How to express a One-To-Many relationship in Django?
- [Django]-Django order_by query set, ascending and descending
- [Django]-How to get GET request values in Django?
12👍
Add 10.0.2.2
to your INTERNAL_IPS on Windows, it is used with vagrant internally
INTERNAL_IPS = (
‘10.0.2.2’,
)
This should work.
- [Django]-How can I handle Exceptions raised by dango-social-auth?
- [Django]-Django.db.utils.IntegrityError: duplicate key value violates unique constraint "django_migrations_pkey"
- [Django]-Why doesn't django's model.save() call full_clean()?
6👍
I had the same problem and finally resolved it after some googling.
In INTERNAL_IPS, you need to have the client’s IP address.
- [Django]-Django admin file upload with current model id
- [Django]-Where can I find the error logs of nginx, using FastCGI and Django?
- [Django]-Django custom field validator vs. clean
5👍
I know this question is a bit old, but today i installed django-toolbar with docker and came across with the same issue, this solved it for me
INTERNAL_IPS = ["127.0.0.1", "10.0.2.2"]
import socket
hostname, _, ips = socket.gethostbyname_ex(socket.gethostname())
INTERNAL_IPS += [".".join(ip.split(".")[:-1] + ["1"]) for ip in ips]
As i read in a comment, the issue is that docker uses a dynamic ip, to solve this we can get the ip from the code above
- [Django]-Malformed Packet: Django admin nested form can't submit, connection was reset
- [Django]-Cannot set Django to work with smtp.gmail.com
- [Django]-Pagination in Django-Rest-Framework using API-View
4👍
Another thing that can cause the toolbar to remain hidden is if it cannot find the required static files. The debug_toolbar templates use the {{ STATIC_URL }} template tag, so make sure there is a folder in your static files called debug toolbar.
The collectstatic management command should take care of this on most installations.
- [Django]-Django urlsafe base64 decoding with decryption
- [Django]-How can I check the size of a collection within a Django template?
- [Django]-Referencing multiple submit buttons in django
4👍
-
Like you said I have configured everything said in documentation, still debug_toolbar was not showing up.
Then I tried it in Firefox, it worked fine. -
Then from chrome, I inspect the webpage and change classname class="djdt-hidden". You can try changing it or removing it.
-
run manage.py collectstatic and repeat the above step
-
Actually you can skip steps 2 and 3, by editing
.djdt-hidden{ display: none;}
from path
debug_toolbar/static/debug_toolbar/css/toolbar.css
-
Add this two lines somewhere in settings.py
import mimetypes
mimetypes.add_type("application/javascript", ".js", True)
-
in urls.py
import debug_toolbar
urlpatterns += [ path('__debug__/', include(debug_toolbar.urls)),]
-
Use reference django debug toolbar installation
- If it still doesn’t working then,
create launch.json and mention different port number for debugging
`
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\manage.py",
"args": [
"runserver",
"9000",
],
"django": true
}
]
}
`
-
Important step: check your webpage/template is in proper format inorder to show debug_toolbar. use html boilerplate template to edit your page or add missing elements/tags like
<html></html>
<body></body>
<head><head>
etc to your django template or import a layout
- [Django]-RuntimeWarning: DateTimeField received a naive datetime
- [Django]-How to allow only one radio button to be checked?
- [Django]-Django – filtering on foreign key properties
3👍
An addition to previous answers:
if the toolbar doesn’t show up, but it loads in the html (check your site html in a browser, scroll down)
the issue can be that debug toolbar static files are not found (you can also see this in your site’s access logs then, e.g. 404 errors for /static/debug_toolbar/js/toolbar.js)
It can be fixed the following way then (examples for nginx and apache):
nginx config:
location ~* ^/static/debug_toolbar/.+.(ico|css|js)$ {
root [path to your python site-packages here]/site-packages/debug_toolbar;
}
apache config:
Alias /static/debug_toolbar [path to your python site-packages here]/site-packages/debug_toolbar/static/debug_toolbar
Or:
manage.py collectstatic
more on collectstatic here: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#collectstatic
Or manualy move debug_toolbar folder of debug_toolbar static files to your set static files folder
- [Django]-How does Django's nested Meta class work?
- [Django]-Troubleshooting Site Slowness on a Nginx + Gunicorn + Django Stack
- [Django]-Visual Editor for Django Templates?
3👍
I tried the configuration from pydanny’s cookiecutter-django and it worked for me:
# django-debug-toolbar
MIDDLEWARE_CLASSES = Common.MIDDLEWARE_CLASSES + ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INSTALLED_APPS += ('debug_toolbar',)
INTERNAL_IPS = ('127.0.0.1',)
DEBUG_TOOLBAR_CONFIG = {
'DISABLE_PANELS': [
'debug_toolbar.panels.redirects.RedirectsPanel',
],
'SHOW_TEMPLATE_CONTEXT': True,
}
# end django-debug-toolbar
I just modified it by adding 'debug_toolbar.apps.DebugToolbarConfig'
instead of 'debug_toolbar'
as mentioned in the official django-debug-toolbar docs, as I’m using Django 1.7.
- [Django]-Django limit_choices_to for multiple fields with "or" condition
- [Django]-Django urlsafe base64 decoding with decryption
- [Django]-Django-DB-Migrations: cannot ALTER TABLE because it has pending trigger events
3👍
django 1.8.5:
I had to add the following to the project url.py file to get the debug toolbar display. After that debug tool bar is displayed.
from django.conf.urls import include
from django.conf.urls import patterns
from django.conf import settings
if settings.DEBUG:
import debug_toolbar
urlpatterns += patterns('',
url(r'^__debug__/', include(debug_toolbar.urls)),
)
django 1.10: and higher:
from django.conf.urls import include, url
from django.conf.urls import patterns
from django.conf import settings
if settings.DEBUG:
import debug_toolbar
urlpatterns =[
url(r'^__debug__/', include(debug_toolbar.urls)),
] + urlpatterns
Also don’t forget to include the debug_toolbar to your middleware.
The Debug Toolbar is mostly implemented in a middleware. Enable it in your settings module as follows:
(django newer versions)
MIDDLEWARE = [
# ...
'debug_toolbar.middleware.DebugToolbarMiddleware',
#
Old-style middleware:(need to have _CLASSES keywork in the Middleware)
MIDDLEWARE_CLASSES = [
# ...
'debug_toolbar.middleware.DebugToolbarMiddleware',
# ...
]
- [Django]-How to debug in Django, the good way?
- [Django]-Django-Forms with json fields
- [Django]-Django: remove a filter condition from a queryset
2👍
For me this was as simple as typing 127.0.0.1:8000
into the address bar, rather than localhost:8000
which apparently was not matching the INTERNAL_IPS.
- [Django]-Django annotation with nested filter
- [Django]-Default filter in Django model
- [Django]-DRF: custom ordering on related serializers
2👍
In my case, it was another problem that hasn’t been mentioned here yet: I had GZipMiddleware in my list of middlewares.
As the automatic configuration of debug toolbar puts the debug toolbar’s middleware at the top, it only gets the “see” the gzipped HTML, to which it can’t add the toolbar.
I removed GZipMiddleware in my development settings. Setting up the debug toolbar’s configuration manually and placing the middleware after GZip’s should also work.
- [Django]-A field with precision 10, scale 2 must round to an absolute value less than 10^8
- [Django]-FileUploadParser doesn't get the file name
- [Django]-South migration: "database backend does not accept 0 as a value for AutoField" (mysql)
- [Django]-How to pull a random record using Django's ORM?
- [Django]-Django AutoField with primary_key vs default pk
- [Django]-How do I remove Label text in Django generated form?
1👍
This wasn’t the case for this specific author but I just have been struggling with the Debug Toolbar not showing and after doing everything they pointed out, I found out it was a problem with MIDDLEWARE order. So putting the middleware early in the list could work. Mine is first:
MIDDLEWARE_CLASSES = (
'debug_toolbar.middleware.DebugToolbarMiddleware',
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'dynpages.middleware.DynpageFallbackMiddleware',
'utils.middleware.UserThread',
)
- [Django]-How to 'bulk update' with Django?
- [Django]-How to get the current URL within a Django template?
- [Django]-*_set attributes on Django Models
1👍
I got the same problem, I solved it by looking at the Apache’s error log.
I got the apache running on mac os x with mod_wsgi
The debug_toolbar’s tamplete folder wasn’t being load
Log sample:
==> /private/var/log/apache2/dummy-host2.example.com-error_log <==
[Sun Apr 27 23:23:48 2014] [error] [client 127.0.0.1] File does not exist: /Library/WebServer/Documents/rblreport/rbl/static/debug_toolbar, referer: http://127.0.0.1/
==> /private/var/log/apache2/dummy-host2.example.com-access_log <==
127.0.0.1 - - [27/Apr/2014:23:23:48 -0300] "GET /static/debug_toolbar/css/toolbar.css HTTP/1.1" 404 234 "http://127.0.0.1/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:28.0) Gecko/20100101 Firefox/28.0"
I just add this line to my VirtualHost file:
Alias /static/debug_toolbar /Library/Python/2.7/site-packages/debug_toolbar/static/debug_toolbar
- Of course you must change your python path
- [Django]-What is actually assertEquals in Python?
- [Django]-Django edit user profile
- [Django]-Django Framework – Is there a shutdown event that can be subscribed to?
1👍
It works for me.
#urls.py
if settings.DEBUG:
from django.conf.urls.static import static
import debug_toolbar
import mimetypes
mimetypes.add_type("application/javascript", ".js", True)
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns = [path('__debug__/', include(debug_toolbar.urls)), ] + urlpatterns
- [Django]-Aggregate() vs annotate() in Django
- [Django]-How to get the domain name of my site within a Django template?
- [Django]-Django related_name for field clashes
0👍
you have to make sure there is a closing tag in your templates.
My problem is that there is no regular html tags in my templates, I just display content in plain text. I solved it by inheriting every html file from base.html, which has a tag.
- [Django]-Pytest.mark.parametrize with django.test.SimpleTestCase
- [Django]-How to create an object for a Django model with a many to many field?
- [Django]-Is there a way to loop over two lists simultaneously in django?
0👍
I had the same problem using Vagrant. I solved this problem by adding ::ffff:192.168.33.1
to the INTERNAL_IPS as below example.
INTERNAL_IPS = (
'::ffff:192.168.33.1',
)
Remembering that 192.168.33.10
is the IP in my private network in Vagrantfile.
- [Django]-How to allow only one radio button to be checked?
- [Django]-Django Cannot set values on a ManyToManyField which specifies an intermediary model. Use Manager instead
- [Django]-Iterating over related objects in Django: loop over query set or use one-liner select_related (or prefetch_related)
0👍
I had this problem and had to install the debug toolbar from source.
Version 1.4 has a problem where it’s hidden if you use PureCSS and apparently other CSS frameworks.
This is the commit which fixes that.
The docs explain how to install from source.
- [Django]-Missing Table When Running Django Unittest with Sqlite3
- [Django]-Django Rest Framework custom response message
- [Django]-How to set the timezone in Django
0👍
For anyone who is using Pycharm 5 – template debug is not working there in some versions. Fixed in 5.0.4, affected vesions – 5.0.1, 5.0.2
Check out issue
Spend A LOT time to find that out. Maybe will help someone
- [Django]-Django CMS fails to synch db or migrate
- [Django]-Querying django migrations table
- [Django]-Determine variable type within django template
0👍
In the code I was working on, multiple small requests were made during handling of main request (it’s very specific use case). They were requests handled by the same Django’s thread. Django debug toolbar (DjDT) doesn’t expect this behaviour and includes DjDT’s toolbars to the first response and then it removes its state for the thread. So when main request was sent back to the browser, DjDT was not included in the response.
Lessons learned: DjDT saves it’s state per thread. It removes state for a thread after the first response.
- [Django]-Get object by field other than primary key
- [Django]-Django Cache cache.set Not storing data
- [Django]-How can I disable logging while running unit tests in Python Django?
0👍
What got me is an outdated browser!
Noticed that it loads some stylesheets from debug toolbar and guessed it might be a front-end issue.
- [Django]-Rendering a value as text instead of field inside a Django Form
- [Django]-Django storages aws s3 delete file from model record
- [Django]-How to assign items inside a Model object with Django?
0👍
After many trial and error, this worked for me in Django=3.1
After writing all internal_ip, middleware, appending in url, put this code in settings.py at below
def show_toolbar(request):
return True
DEBUG_TOOLBAR_CONFIG = {
"SHOW_TOOLBAR_CALLBACK": show_toolbar,
'INSERT_BEFORE': '</head>'
}
Many of them suggested SHOW_TOOLBAR_CALLBACK, but in my case it only worked after added ‘INSERT_BEFORE’
- [Django]-Programmatically saving image to Django ImageField
- [Django]-Nginx doesn't serve static
- [Django]-How to access the local Django webserver from outside world
0👍
have same issue
after adding
urls.py
mimetypes.add_type("application/javascript", ".js", True)
urlpatterns = [...
and
DEBUG_TOOLBAR_CONFIG = {
'INTERCEPT_REDIRECTS': False,
'SHOW_TOOLBAR_CALLBACK': lambda request: True,
'SHOW_TEMPLATE_CONTEXT': True,
'INSERT_BEFORE': '</head>'
}
javascripts files added but all tags have class djdt-hidden
and hidden
<div id="djDebug" class="djdt-hidden" dir="ltr" data-default-show="true">
i was using GoogleChrome
in FireFox
bug was fixed and django toolbar icon appear
- [Django]-What is the most efficient way to store a list in the Django models?
- [Django]-Unittest Django: Mock external API, what is proper way?
- [Django]-The QuerySet value for an exact lookup must be limited to one result using slicing. Filter error
0👍
if you are using windows, it might be from your registery.
set HKEY_CLASSES_ROOT.js\Content Type to text/javascript instead of text/plain.
- [Django]-Django celery task: Newly created model DoesNotExist
- [Django]-Filter Queryset on empty ImageField
- [Django]-Django values_list vs values
0👍
Everything is done, but in Chrome no "django debug toolbar" is showed.
Chrome console: Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/plain". Strict MIME type checking is enforced for module scripts per HTML spec. (toolbar.js;1)
In EDGE, exactly from the same server and url, is the toolbar showed.
- [Django]-Django: Using F arguments in datetime.timedelta inside a query
- [Django]-Custom django admin templates not working
- [Django]-Django.contrib.auth.logout in Django
0👍
I have the same problem and I have tried all the solutions above and non of them worked.
Then I tried to find out what is the main issues of this problem in my project, and it was coming from the template file.
Make sure that your template content is inside the <body></body>
.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
</body>
</html>
- [Django]-Using django-rest-interface
- [Django]-Django – how to unit test a post request using request.FILES
- [Django]-How to format time in django-rest-framework's serializer?
0👍
I was getting the below error, but I was able to see the related components to the debug_toolbar
in view page source. Then inspect page shows the below error.
Failed to load module script: Expected a JavaScript module script but
the server responded with a MIME type of "text/plain". Strict MIME
type checking is enforced for module scripts per HTML spec.
Then I added this in the settings.py
and the error disappeared and I was able to see the toolbar.
if DEBUG:
import mimetypes
mimetypes.add_type("application/javascript", ".js", True)
- [Django]-Where to put business logic in django
- [Django]-Django – filtering on foreign key properties
- [Django]-Default filter in Django model
0👍
I hobbled together a few of these answers into one that worked for me.
Versions:
Django 4.2.1
django-debug-toolbar 4.1.0
-
Add this to settings.py :
if DEBUG: import mimetypes mimetypes.add_type("application/javascript", ".js", True)
-
Delete pycache .pyc files.
-
Clear web cache (ctrl+shft+delete)
- [Django]-Django – {% csrf_token %} was used in a template, but the context did not provide the value
- [Django]-Django rest framework lookup_field through OneToOneField
- [Django]-How to change the name of a Django app?
0👍
If you come here, reading chapter 8 of the documentation: It is – as of 2023.9.3 – a documentation gotcha. For sake of simplicity, the Django docs do not use full, valid HTML templates (see the note under Write views that actually do something). This irritates the debug toolbar.
If you visit a page for which no route is defined, or the backend, the resulting (error-)page will be a valid HTML document, and the toolbar will be visible.
Therefore, to solve the issue, create a BASE_DIR/templates/base.html
which contains a valid HTML document, and let your templates under BASE_DIR/polls/templates/polls
extend it. Then the debug toolbar will show up.
A noteworthy gotcha in this context, {% extends "base.html" %}
may not find a base.html
in the same directory. You may have to write {% extends "polls/base.html" %}
instead. Check the error log shown in the browser to see in which directories Django searched.
- [Django]-Setting Django up to use MySQL
- [Django]-With DEBUG=False, how can I log django exceptions to a log file
- [Django]-How to access the local Django webserver from outside world
-1👍
One stupid thing got me.. that if you use apache wsgi, remember to touch the .wsgi file to force your code recompile. just waste 20 minutes of my time to debug the stupid error 🙁
- [Django]-Django rest framework, use different serializers in the same ModelViewSet
- [Django]-Django: How to manage development and production settings?
- [Django]-How can I build multiple submit buttons django form?
- [Django]-Get count of related model efficiently in Django
- [Django]-How to assign items inside a Model object with Django?
- [Django]-What is a "django backend"?