Tagged Questions
0
votes
0answers
19 views
django admin - overriding my session id - why?
I am trying to setup admin page for my site. sofar working fine. but once i log into admin, it is deleting my other session: sess_id. if i go back to normal page where i had that session, it is giving ...
0
votes
1answer
24 views
Django how to set user model session expiration time
So I am using the default django user model and I noticed that people seemed to be logged in by default for a week or so. I want to change that so they are logged in for like 5 years or so. Is there a ...
0
votes
1answer
48 views
Aliasing (CNAME) Django SubDomains/Domains Saving Sessions
I was able to stay logged in on multiple subdomains I created for example.com, such as I stayed logged in at a.example.com and b.example.com. But when I try aliasing (CNAME) to example.com of ...
0
votes
1answer
94 views
Django session lost data (empty)
I want to use sessions in my site. I set the follwing setting in the settings.py file:
'django.contrib.sessions', #in the installed apps
and
SESSION_ENGINE = ...
0
votes
0answers
96 views
Django shows an error after close IE10
I'm getting this error below after set SESSION_EXPIRE_AT_BROWSER_CLOSE = True on my settings.py. I can open and login and logout with no errors...but if I close before login I get this error. Is ...
-1
votes
1answer
57 views
Create an 'Add to Shortlist' feature in Django [closed]
I'm trying to create an 'Add to Shortlist' feature to my Django website, which lists many products, each having an add to shortlist button. When the user (whether signed up or guest user) clicks this ...
0
votes
1answer
243 views
Django: How to set sessionid cookie for AnonymousUser without using SESSION_SAVE_EVERY_REQUEST
I am attempting to track AnonymousUsers to figure out when they first come to the site, and when they then register to the website.
To do so, I created a middleware with the relevant functionality, ...
0
votes
2answers
119 views
Check if cookies are enabled for login on every page
I have a login form on every page. If login fails because cookies are disabled, I want to show the user a message asking them to enable cookies. I have created this middleware:
class ...
1
vote
1answer
106 views
How to prevent Django from overriding sessionid cookie?
I'm trying to have 2 browser windows with the same session in a test. Note that each browser has a different firefox profile because of selenium limitations.
The test (you can try it, as long as you ...
0
votes
0answers
94 views
Authentication using Ajax with Django not working
I am trying to build an AJAX signup page over HTTP. (It is not HTTPS because I am not taking a password).
I have built the django view that accepts a POST request and returns back a JSON with a ...
-2
votes
1answer
171 views
how to clear cookies using python django
I am trying to develop login page for a web site. I am using django 1.4.2. I stored users which logged on correctly to a cookie using set_cookie. But I didnt find clear_cookie in django's document. ...
0
votes
0answers
34 views
How do I read the session_cookie_domain for a cookie from httprequest in django?
I know we have request.COOKIES but that just looks like:
COOKIES:{'__utma': '96992031.289374129.1351971737.1358256866.1358313446.115',
'__utmb': '96992031.9.10.1358313446',
'__utmc': '96992031',
...
3
votes
2answers
174 views
make the subdomain read parent domains sessions
I am using django. I have hosted xyz.com. As part of the same website, I have abc.xyz.com
Now I want abc.xyz.com to read session information from xyz.com, so I can treat logged in users accordingly.
...
2
votes
1answer
525 views
Django session expires at browser close OR after time
The Django documentation states:
You can control whether the session framework uses browser-length
sessions vs. persistent sessions with the
SESSION_EXPIRE_AT_BROWSER_CLOSE setting.
If ...
0
votes
1answer
135 views
Django and Java Applet authorization failed
I'm building a Django App with allauth.
I have a page, with authentication required, where I put a Java applet. This applet do GET requests to other pages (of the same django project) which return ...
0
votes
0answers
131 views
Django session sharing between projects
I have two projects which must share session between them. One project is in domain.com, second - domain.com/app. I setup SESSION_COOKIE_NAME = 'pr1' and SESSION_COOKIE_DOMAIN = 'domain.com' on each ...
1
vote
1answer
415 views
Django : When is sessionid cookie set ? [ Is it available by default ? ]
I am trying to track the user - without login. For that I tried using sessionid or django sessions.
View:
# Associating data with sessionid
ob = MyModel(session_key=request.session.session_key, ...
1
vote
0answers
93 views
django - setting cookie for session on mobile
I am using
response.set_cookie(key, value, max_age=None, domain=domain, secure=None)
This works well on a web browser as max_age=None sets the cookie as long as the browser is open. But on iOS or ...
0
votes
1answer
200 views
How to access Django signed-in user information from the JavaScript?
I'm making a chrome extension (with link submission feature) for my Django-powered site. I'm using django-tastypie to post links from JavaScript. However, I can't figure out how to access django ...
0
votes
1answer
450 views
Read Django session key cookie from Javascript
I'm using Django and I need to be able to check if the client has an
active session on the server from a javascript script. Is there a way to check if the client has a valid django session key cookie ...
0
votes
0answers
57 views
how to set browser-length cookie for different browsers in django?
I want to set browser-length cookie, and set SESSION_EXPIRE_AT_BROWSER_CLOSE = True in the settings.py. But it does not work when I test in IE, chrome. In firefox, it works well.
when I use ...
2
votes
2answers
544 views
Django sessions: changing session key when modified
I am setting up a payment gateway and am using sessions to store data across page requests. The class below is used for organizing and storing information to the session.
class Gateway:
def ...
1
vote
1answer
644 views
Using user authentication/sessions with Django and ASIHttpRequest
I am trying to make a basic authentication system in iOS that sends a POST to Django and on the Django side authenticates the user and starts a session. Right now I am able to send the user ...
0
votes
1answer
82 views
Admin on GAE and django
Im developing a google app engine and django based site and i'm tring to figure out what's
the best approach to solve the problem, the site requirments are as follows:
There must be a super ...
2
votes
2answers
310 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 ...
0
votes
2answers
950 views
Facebook javascript in different languages
My facebook javascript that I added to uses the "like" button from facebook and other components, looks like this:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = ...
0
votes
1answer
230 views
Django: Store user id in cookie
I'd like to store a unique user identifier in a cookie (in order to be able to include it in the apache log). I'm thinking of overriding the login method and setting the cookie on success.
Does that ...
1
vote
0answers
123 views
Single domain, single sign on scheme for Django/Java servlet
I am investigating single domain single login scheme for my web app.
A django front end is used for user sign in. Once on the django app, the user can access resources stored on a java servlet.
I ...
0
votes
1answer
538 views
Django SESSION_COOKIE_DOMAIN on localhost
When I set SESSION_COOKIE_DOMAIN = '.mysite.com' and then run the production site, the site creates the proper cross domain cookie and it's set to .mysite.com. However, if I set SESSION_COOKIE_DOMAIN ...
2
votes
1answer
1k 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
706 views
How to share session data between Django and PHP on the same domain
I have a Django application that logs users in and out using the standard Django auth system. The app also uses sessions which are stored in the Django database (db storage is also the Django ...
-1
votes
1answer
684 views
Django: check cookies are enabled?
I want to check whether cookies are enabled in Django. I have the following code:
def test_cookies(request):
request.session.set_test_cookie()
if request.session.test_cookie_worked():
...
3
votes
1answer
1k views
Django sessions not working in Internet Explorer
Sessions work perfectly in all other browsers that I have tested.
If I try to get the session id with sessionid = request.COOKIES['sessionid'], I get this error: KeyError: 'sessionid'
This is what I ...
1
vote
1answer
1k views
In django, how is request.session.set_expiry used to log out users after idle?
I want to log users out after some period of inactivity. This question (Logging users out of a Django site after N minutes of inactivity ) has a reasonable looking answer.
But I'd like to understand ...
7
votes
2answers
1k views
0
votes
1answer
261 views
In django, are all session data deleted if a user logs out?
I need to track some information on users, but would like to retain it for a fixed time period, say a week.
If I set this value via request.sessions, and the user logs out, can I retrieve it if ...

