Middleware is a framework of hooks into Django’s request/response processing. It’s a light, low-level “plugin” system for globally altering Django’s input and/or output.
0
votes
1answer
40 views
django custom authentication backend with custom middleware (both username,password and token absed auth)
I am in a situation where I need to make a custom authentication and custom middleware to authenticate and authorize the user. I have to chek the username password params in the POST request or if the ...
0
votes
0answers
28 views
New thread in middleware
I would like to start new thread in middleware, which would live until django app is on:
def some_method():
// monitor
class MyMiddleware(object):
def __init__(self)
// some operations
...
0
votes
2answers
18 views
Django: django-secretballot MIDDLEWARE
When adding 'secretballot.middleware.SecretBallotMiddleware' to MIDDLEWARE_CLASSES I keep getting the following error:
Exception Type: NotImplementedError
Exception Location: ...
0
votes
2answers
80 views
ImproperlyConfigured: Error importing middleware treeio.core.middleware.user
I got this error:
[Mon Apr 22 23:45:42 2013] [error] [client 192.168.1.88] mod_wsgi (pid=19481): Exception occurred processing WSGI script '/home/projects/treeio/treeio.wsgi'.
[Mon Apr 22 23:45:42 ...
0
votes
1answer
25 views
Why does calling logout() in middleware not work for the current request?
I've built a small custom middleware to log out the user and flush the session conditionally. I'd expect the current request to have the user logged out. However, for the request/response currently ...
1
vote
0answers
49 views
Django 1.5 transaction middleware : do you need to use it?
we have this super weird issue happening with postgres that only happens on random requests. We get an InterfaceError: connection already closed which seems to be being thrown by the ...
0
votes
0answers
25 views
Django exceptions, select what to report to admins
Is there any way to "tell" Django when to send emails to admins and when not? For instance, I'd like to not send an email when a DatabaseError exception is thrown.
I thought of creating a middleware ...
0
votes
1answer
43 views
When does Django's Middleware framework hook the request?
Does the Middleware framework hook the request object before it is sent to the urlconf?
Also, does this hook happen after it goes through WSGIHandler?
So, just in respect to these three "layers", is ...
1
vote
1answer
136 views
Django - AuthenticationMiddleware setting request.user
Regarding AuthenticationMiddleware, why did Django 1.3 handle the user property at class level,
and why was it changed to an instance property in 1.4?
This is from 1.3
class LazyUser(object):
...
-1
votes
1answer
77 views
Django - request and response processing [closed]
I have made a simple graphic representing what I have understood of the major steps of Django's request/response processing, but I'm not sure if it is correct.
So, could someone, please, tell me if I ...
1
vote
0answers
33 views
view_func.__module__ suddenly broken
I have a process_view middleware that sets the module and view names into the request like this:
class ViewName( object ):
def process_view( self, request, view_func, view_args, view_kwargs ):
...
0
votes
1answer
389 views
django error: ImproperlyConfigured: WSGI application
My application was working last night, not sure why it won't work this morning. I think that all I did was to create an app called django to store my models, tests, and views.
Getting this error, ...
0
votes
1answer
106 views
Setting up local django environment for multiple domains
I'm trying to set up a Django application that will accept multiple subdomain URLs. I'd like to test this locally. Since I can't nail this first step of passing in a url that has a subdomain, I ...
0
votes
0answers
71 views
Django: security middleware is crashing the site
On production, I've been trying to add the djangosecure.middleware.SecurityMiddleware (from http://pypi.python.org/pypi/django-secure)to my settings, but haven't had any luck making it work.
When I ...
2
votes
3answers
885 views
Python and Django OperationalError (2006, 'MySQL server has gone away')
Original: I have recently started getting MySQL OperationalErrors from some of my old code and cannot seem to trace back the problem. Since it was working before, I thought it may have been a software ...
0
votes
1answer
153 views
Django custom middleware messes session middleware
I'm trying to diagnose the error in my custom middleware somehow brings down my session middleware.
The custom middleware is a simple app which deletes old files in some folders.
class ...
1
vote
0answers
81 views
Django testing and middleware
I am having problems using the Django test Client() for testing middleware. It seems to emulate the sessions middleware specifically. However, since it is based on the RequestFactory, it does not seem ...
0
votes
1answer
51 views
How do I inherit plugins to child pages without breaking links in Django-CMS?
I'm making a multilingual Django-CMS site. I have a page that has some content in it that links to a child page, in such a way to keep that link stays visible. This means someone can click the link ...
0
votes
3answers
140 views
New Django middleware not getting called
I am quite new to web development. I am working on a website hosted on amazon ec2 server. The site is in python using django framework. I am using memcached to cache some client information. My site ...
0
votes
1answer
44 views
Django: How to register a decorator or add a middleware to a third party view function?
I use django-allauth for account management including signup. The builtin url in allauth app for signup is http://mysite.com/accounts/signup/. I need to show a Terms & Conditions page before going ...
0
votes
1answer
168 views
How can I prevent a redirect loop using SSL with gunicorn/nginx?
I get a redirect loop when using SSL middleware to redirect certain urls to HTTPS. What should I do?
My nginx config is set up to forward requests to gunicorn.
0
votes
1answer
21 views
Why is my SSL middleware misbehaving?
I'm using middleware to force certain pages to be served over HTTPS:
class SSLRedirect:
def __init__(self):
self.enabled = getattr(settings, 'SSL_ENABLED')
def process_view(self, request, ...
1
vote
2answers
75 views
cProfiler Django middleware: sorting the stats
In Django, I am using the below middleware Cprofiler snippet /from http://djangosnippets.org/snippets/727/ )
How do I change what is used to sort it? If I want to use sort_stats() where does that go ...
0
votes
1answer
69 views
Why does my redirect middleware fail?
I have a middleware that redirects mobile users to a mobile site, but I want to direct them to the the full site if the url is /property/. The mobile redirect is working, but /property/ is not being ...
2
votes
3answers
160 views
Override Django authentication with middleware
I have a Django website and a MyBB forum, and I'd like to share authentication between them. My website used to be a message board; then I built a few other sections in Django, and both MyBB and ...
0
votes
2answers
200 views
Django middleware is ImproperlyConfigured?
For some reason, I am getting an ImproperlyConfigured error on account of custom middleware.
[Wed Nov 07 20:47:07 2012] [error] [client 158.130.107.158] File does not exist: ...
0
votes
2answers
117 views
'User' Object has no attribude is_authenticated
I've created a User model for my django app
class User(Model):
"""
The Authentication model. This contains the user type. Both Customer and
Business models refer back to this model.
...
0
votes
2answers
582 views
DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 exception.__class__, exception.message,
Hi can anyone tell me the actual reason behind the warning i am getting in this code.
and how can i solve this ?
I am getting this message "DeprecationWarning: BaseException.message has been ...
3
votes
2answers
238 views
Where in django is the default 500 traceback rendered so that I can use it to create my own logs?
I would like to use it to generate html log files inside the process_exception() method of my custom middleware class, e.g:
Exception caught.
process_exception(request) called.
process_exception ...
1
vote
1answer
62 views
mobile switching is not working in Django?
i have django project in which mobile part settings.py configured as given below
MIDDLEWARE_CLASSES = (
'site_middleware.SetSiteFromHost',
)
SITE_ID = 1
...
0
votes
1answer
81 views
getting the template name and the time it takes to render in a middleware based on a url
I want to write a middleware that would tell me the name of the template being rendered and the time it took, for the database queries for that particular view.
Django Debug Toolbar does the same, ...
1
vote
2answers
58 views
Not to allow to delete models in django project for demo product
I have a demo product built on django framework and is running live. Prospective customer will login to the UI with superuser access privilege. I wanted to show the delete option but when they execute ...
0
votes
2answers
2k views
Forbidden (403) CSRF verification failed. Request aborted
I am making an app of login form but when I am running my app and click on login button the following error will occur
Forbidden (403)
CSRF verification failed. Request aborted.
the code of view.py ...
1
vote
1answer
118 views
ZeroDivisionError on GET parameter django
middleware.py
def get_perpage(self):
try:
self.session['perpage'] = int(self.REQUEST['perpage'])
return self.session['perpage']
except (KeyError, ValueError, TypeError):
...
1
vote
1answer
100 views
Browser delay with changing content of the page in django admin (caching, middleware, python/django)
I have a bit weird problem witch caching on my project in django.
I can edit my page-content in django-admin. When i do that and refresh site - nothing is happening. I have to wait few minutes for ...
3
votes
1answer
845 views
'WSGIRequest' object has no attribute 'session'
I get this error sometimes in custom Middleware in process_response method. I have the following list of middlewares:
MIDDLEWARE_CLASSES = [
'django.middleware.common.CommonMiddleware',
...
0
votes
0answers
60 views
Django Partial Page not working with wsgi
I installed django-partial-page plugin. It works fine when I use the django runserver. When I move it to my production server (configured as wsgi), I get a 500. Below is the stack trace:
mod_wsgi ...
1
vote
1answer
320 views
Middleware: using model in process_request and modifying it in process_response
Does Django flattening response after process_response?
I have this model (simplified version):
class Ticket(models.Model):
uuid = UUIDField(primary_key = True)
is_active = ...
2
votes
1answer
377 views
Django Messaging Framework not displaying message despite RequestContext
here's a conundrum for you,
Using Django 1.4, I cannot get messages set through the messages middleware to display in my templates. I have combed through the Django docs and ensured that my ...
2
votes
1answer
83 views
Browser delay with changing content of the page in django admin (caching, python/django)
I have a bit weird problem witch caching on my project in django.
I can edit my page-content in django-admin. When i do that and refresh site - nothing is happening. I have to wait few minutes for ...
0
votes
1answer
200 views
What is a django middleware equivalent in ASP MVC?
Basically, I want to inject some data into ViewData/ViewBag for every single request.
1
vote
2answers
389 views
Django 1.4 LocaleMiddleware not working with Apache, but works with runserver
My project has this middleware setting:
MIDDLEWARE_CLASSES = (
'django.middleware.cache.UpdateCacheMiddleware',
'django.middleware.locale.LocaleMiddleware',
...
1
vote
3answers
1k views
Django: WSGIRequest' object has no attribute 'user' on some pages?
I want to set a cookie if user is logged in or not.
My Middleware:
class UserStatus(object):
def process_response(self,request,response):
user_status = 1 if ...
0
votes
0answers
53 views
Is django's database-abstraction API unpleasent in middleware
The background of my question is that for my multiple site django project I want to dynamically set the SITE_ID by using middleware, like shown here: http://djangosnippets.org/snippets/1099/
...
0
votes
2answers
73 views
Display the same 'session', turn-based django game
I really dont know if this kind of diffuse question is suited here, but i'll give it a go anyhow.
I'm building a turn-based (Yatzee)game in Django, where i have a rally simple model for the ...
0
votes
2answers
1k views
Django mobile and full site redirects
I've been searching for a while on Google and haven't been able to find exactly what I'm looking for and decided to ask everyone here.
I've got a full site and mobile version of the site (one page ...
1
vote
1answer
167 views
Django middleware and HttpRequest change
I have a middleware to make some calculations/check for each incoming request. Some of view need this calculations result.
As I do not want to call the same code twice, I would like to put results to ...
0
votes
1answer
64 views
Pass data to middleware
I have middleware which do some work for me. Is it possible to pass some data to this middleware in respect to template which will be rendered?
Lets assume that I have urls:
url(r'^some/$', ...
1
vote
1answer
80 views
Is there a less-database-intensive way to get data from my extended Django Site model?
I run a site that operates the same on many URLs except for the name and the display of objects tied to a given site. Because of this I have extended the Site model to include various other bits of ...
2
votes
2answers
606 views
Django: How to access session_key in middleware
I'm unable to access the session_key in my custom Django middleware. I try to access it using:
session = Session.objects.get(pk=request.session._session_key)
or
session_key = ...

