Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
513 views

Huge Django Session table, normal behaviour or bug?

Perhaps this is completely normal behaviour, but I feel like the django_session table is much larger than it should have to be. First of all, I run the following cleanup command daily so the size is ...
5
votes
4answers
191 views

Django: any way to avoid querying for request.user on every request?

For my website pretty much every page has a header bar displaying "Welcome, ABC" where "ABC" is the username. That means request.user will be called for every single request resulting in database hits ...
4
votes
1answer
550 views

Using sessions in Django

I'm using sessions in Django to store login user information as well as some other information. I've been reading through the Django session website and still have a few questions. From the Django ...
3
votes
1answer
82 views

cannot urlencode() after storing QueryDict in session

I tried to post this to django-users group ( http://groups.google.com/group/django-users/browse_thread/thread/8572d7f4075cfe0e ) but got no responses. Maybe here I will get more help. I store ...
3
votes
1answer
420 views

How to deal with temporary storage of uploaded files

In my django application I have a multi step registration, with few conditional parameters. Because of this I figured out to store data from forms in session. Unfortunatelly sessions serialize data ...
2
votes
3answers
278 views

session id changes when using redirect() in View

I have a page with a form that I use for site search. The form uses POST verb to submit data to search for. The search results are displayed under the form after it is submitted. In an attempt to ...
2
votes
1answer
109 views

Django: determine which user is deleting when using post_delete signal

I want admins to be notified when certain objects are deleted but I also want to determine which user is performing the delete. Is it possible? This is the code: # models.py # signal to notify ...
2
votes
1answer
106 views

Most optimized way to delete all sessions for a specific user in Django?

I'm running Django 1.3, using Sessions Middleware and Auth Middleware: # settings.py SESSION_ENGINE = django.contrib.sessions.backends.db # Persist sessions to DB SESSION_COOKIE_AGE = 1209600 ...
2
votes
2answers
156 views

How to create Django like button for anonymous users?

I am using Django and my website has no user profiles so all are anonymous. I want to implement a 'like' system. How do I restrict a user to like only once. Thanks.
2
votes
2answers
260 views

Testing a session variable in django

I came across Django Request.Session where, I know how to set and test it for a specific value. request.session['name'] = "dummy" and somewhere i check if request.session['name'] == "dummy" : ...
2
votes
3answers
1k views

AttributeError: 'WSGIRequest' object has no attribute 'session'

I keep getting this error at random times and whenever I touch the django.wsgi file, it gets fixed only to happen again after a few hours. I'm lost as to what to do. my middleware_classes is as ...
2
votes
3answers
217 views

How to share a session with a php application

I have a django blog project and a chat in PHP. I need to share the id of the user logged in django ( request.user.id ) with the chat in PHP. Is this possible ?
2
votes
2answers
189 views

access django session from a decorator

I have a decorator that I use for my views @valid_session from django.http import Http404 def valid_session(the_func): """ function to check if the user has a valid session """ def _decorated(*args, ...
2
votes
0answers
348 views

Problem with authentication from different domains using Django sessions

I am developing a bookmarklet which essentially adds a toolbar to a web page user is currently looking at. To use it, user needs to be logged in. To login user clicks on 'Singin' which displays a ...
2
votes
3answers
1k views

Django, SESSION_COOKIE_DOMAIN with multiple domains

In Django, I have SESSION_COOKIE_DOMAIN set to my domain name. But I would actually like to run the same site with two different domain names. With SESSION_COOKIE_DOMAIN set, only the named domain ...
1
vote
0answers
40 views

Session being reset by django-all auth

I am using django all auth for login on my website. I want to pass some session variables from one view to the other, but when i go to login page through all auth, somehow my session variable are ...
1
vote
0answers
43 views

Disadvantages of sharing Django sessions on multiple subdomains

I have built a Django site using the Sites Framework and have four sites on different subdomains. Lets call them one.mydomain.com; two.mydomain.com ... etc. Three of the sites are product sites and ...
1
vote
2answers
69 views

Writing Django authentication/login logic with sessions

I'm still pretty new to Django and I'm looking to write a login method. What's the best logic for doing that and storing the info in a session so a user can maintain their login? I have a model for ...
1
vote
1answer
97 views

Django: session database table cleanup

Does this table need to be purged or is it taken care automatically by Django?
1
vote
0answers
76 views

Django key based session expiration

I have a website which contains different rule sets for diferent type of users. However, one rule/permission is depending session expiration. For example, an unauthenticated users' session must be ...
1
vote
2answers
84 views

Allowing Users logged in with multiple accounts at once to the same Django site

I'm creating a widget that gets installed on various different sites and I need distinct users for each site. Problem is, the same person browsing might have 2 different sites open at once that use my ...
1
vote
1answer
69 views

Django-Secretballot does not work?

I am using Django-secretballot app which allows anonymous voting. First we register a model for secret voting and then there is a function add_vote() which takes 2 arguments. 'Token' and vote value(+1 ...
1
vote
1answer
102 views

Can I prevent Django user login sessions from expiring?

I'm working on a site that uses Django 1.2.5. It uses the Django authentication backend to log users in and out. This, in turn, uses the Django session framework to set cookies. It appears that ...
1
vote
1answer
150 views

django cached session

I have two questions: 1) I am wondering whether using django.contrib.sessions.backends.cache for storing sessions really improves performance of a website? Assuming there are around 25k ...
1
vote
2answers
546 views

Manually validate a django session id is currently authenticated

I need to have a function tell me if a django session id is currently authenticated or not. I understand this is already built into django and I have that working just fine. But I have an external ...
1
vote
2answers
423 views

Django, how to see session data in the admin interface

I'm using Django sessions and I would like a way of seeing the session data in the admin interface. Is this possible? I.e. for each session I want to see the data stored in the session database ...
1
vote
1answer
326 views

Pass errors in Django using HttpResponseRedirect

I know that HttpResponseRedirect only takes one parameter, a URL. But there are cases when I want to redirect with an error message to display. I was reading this post: How to pass information using ...
1
vote
4answers
385 views

How do I modify the session in the Django test framework

My site allows individuals to contribute content in the absence of being logged in by creating a User based on the current session_key I would like to setup a test for my view, but it seems that it ...
1
vote
1answer
224 views

Django: retrieve session or cookies in middleware

can i get the current session or cookie inside a middleware? I tried but I got: 'WSGIRequest' object has no attribute 'session'
1
vote
0answers
340 views

How do I properly unit test a Django session?

The behavior of Django sessions changes between "standard" views code and test code, making it unclear how test code is written for sessions. Googling this yields two relevant discussions about this ...
1
vote
2answers
155 views

Django, relying on sessions

Less or more I am building my site heavly on sessions(especially for redirecting users etc), I am curious if this a dangerous practice. What would be the rough percentage of users who have disabled ...
1
vote
1answer
523 views

Django Session Persistent but Losing Data

I have been working for hours trying to understand the following problem: I have a user send an Ajax request to dynamically send a form and record that the number of forms to read on submission has ...
1
vote
3answers
995 views

Django middleware to determine user's group in a session

I have an app that uses django.contrib.auth but makes no use of Django's built-in permissions system. Instead, views have the @login_required decorator and then check which group the user belongs to, ...
1
vote
3answers
563 views

Django SESSION_COOKIE_DOMAIN

I'm seeing something mysterious with the SESSION_COOKIE_DOMAIN setting in django. Normally, when I have this set to ".mydomain.net" it works fine. But occasionally cookies don't seem to be being set, ...
0
votes
3answers
37 views

User registers after contributing to the site? In Django

Let's say I have a site where users can contribute content. If the user is anonymous, and contributes, and comes back after their session is expired, then their contributions are credited to ...
0
votes
0answers
41 views

Caching and/or session issue with django application

We're having several issues with users getting logged out and/or not being able to sign in to our Django application. We have a single database, multiple front end servers, and a nginx load balancer ...
0
votes
1answer
35 views

Hints for the logic of django app

I'm learning Django and for this reason I'm developing an application described below. This application allows users (authenticated and anonymous) to send message to other users. Authenticated users ...
0
votes
2answers
73 views

Django : make a variable persistent

Basically I want to make a variable persitent in Django and I don't know how. To be more precise, I want a user to choose a specific project when he logs in the site (via a ChoiceField for example). ...
0
votes
2answers
70 views

Is there simple way to encode json data in Django? [closed]

I will get data like this from OpenID provider: {"identity":"http:\/\/admin.lol.com\/","provider":"http:\/\/lol.com\/server\/", "name":{"full_name":"\u0421\u0435\u0440\u0433\u0435\u0439 ...
0
votes
2answers
104 views

Django logout and redirect after inactivity

By setting SESSION_COOKIE_AGE and turning SESSION_SAVE_EVERY_REQUEST, it will log people out after a certain time of inactivity. But is there anyway to redirect after say 5 mins of inactivity?
0
votes
1answer
47 views

checking for stale sessions on the client side

in a django app, no signal generated when a session becomes invalid due to timeout If I want to redirect my client to the login page after the session times out, is it a bad idea to have client side ...
0
votes
0answers
67 views

django session with another existing session and authentication backend

I am in the process of creating a django app which uses an already existing backend for session handling and authentication on a server (behind firewall), no data except for session file should remain ...
0
votes
2answers
170 views

Sessions on Memcached in Django - no items in Memcached

I'm setting up sessions in Django using memcached, and after logging in, no items appear in the cache. I can connect to my memcached instance with telnet localhost 11211 and stats says the process is ...
0
votes
1answer
97 views

Django: at what point does SessionMiddleware check the database to see if a session is already in existence?

I'm trying to understand how session works in Django. Looking at the source code of SessionMiddleware: class SessionMiddleware(object): def process_request(self, request): engine = ...
0
votes
1answer
72 views

Django: why is _cached_user an instance attribute of request while LazyUser is a class attribute of request?

In Django: def get_user(request): from django.contrib.auth.models import AnonymousUser try: user_id = request.session[SESSION_KEY] backend_path = request.session[BACKEND_SESSION_KEY] ...
0
votes
1answer
125 views

Use Django context processor or middleware to check for cookies on templates?

My Django app has Post objects. Each Post has an IntegerField that gets incremented whenever a certain link is clicked. When that link is clicked, I set a cookie to indicate that it has been clicked ...
0
votes
1answer
167 views

Using Django sessions

i have got some problem on implementing Django sessions. I have an employee listing page with a filter option on it. Filtering is done based on the fields and a text entered in a text box. The users ...
0
votes
1answer
474 views

Django: setting a session and getting session key in same view

I want to store some things in a database, and am using the current session as a foreign key: from models.py class Visited(models.Model): session = models.ForeignKey(Session) page = ...
0
votes
1answer
263 views

django - storing session values after user logout

Using the Django logout when the user is logging out all the sessions values get flushed. I there a way to keep some of the session values even though the user logs out?
0
votes
2answers
238 views

Django sessions: can you check for session data and set it in same view?

When using Django sessions, is it good practice to see if session data has been previously set, and if not to set the initial session data, in the same view? Will this cause major issues, for me or ...

1 2