|
Posted
over 13 years
ago
by
[email protected]
(Eric Pauley)
I'm using sessions as a simple way to keep track of user logins. (Using server-side storage, not all in the cookie) My code works perfectly on my local test server. (I run it at lcoalhost:8080) When I deploy it to the production server, cookies don't work at all. They are not even getting sent to the client, as far as I can tell.
|
|
Posted
about 15 years
ago
by
[email protected]
(ajgomezlopez)
Hello, Im using gaeutils sessions for an aplication in appengine. I use my own model as this way: ***** from gaeutils import sessions from google.appengine.ext.webapp import RequestHandler class RequestHandlerExt(RequestHandl er): def __init__(self): RequestHandler.__init__(self)
|
|
Posted
over 15 years
ago
by
[email protected]
(Paolo)
reloading the session demo page i'm getting this (chrome 9.0.5 on win7): Traceback (most recent call last): File "/base/python_runtime/python_l ib/versions/1/google/appengine / ext/webapp/__init__.py", line 515, in __call__ handler.get(*groups) File "/base/data/home/apps/gaeutili ties/1.342387383043018161/
|
|
Posted
almost 16 years
ago
by
[email protected]
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 44 by nicolas.pied: gaeutilities on django [link] Hello, I would like to use gaeutilities on django/gae. Do you know how to install gaeutilities on django? Thanks in advance for your reply.
|
|
Posted
about 16 years
ago
by
[email protected]
(Jagan)
Hi There are 2 typo bugs in sessions.py. Both are extra buggy character near the format string %. Line 232: Is: mc = memcache.get(u"_AppEngineUtili ties_Session_%s" % \ Should be: mc = memcache.get(u"_AppEngineUtili ties_Session_%s" % \ Line 862: Is:
|
|
Posted
about 16 years
ago
by
[email protected]
(Joe Bowman)
Greetings, Gaeutilities has had the top spot on the list for Appengine Open Source projects pretty much since that list went up. There are other session libraries out there, many of which are currently quicker, though few have the security features that Gaeutilities offers for it's session library. I have ideas on how this can be addressed as
|
|
Posted
about 16 years
ago
by
[email protected]
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 43 by stanislaw.skonieczny: Session poisoning when using datastore writer [link] Session poisoning is quite easy when using gaeutilities 1.3 (the same problem is with 1.4) with standard configuration.
|
|
Posted
about 16 years
ago
by
[email protected]
(Allen Romero)
I noticed that if I create an object then place it in the session, the object is automatically saved in the database also even though I didn't explicitly save it in the database. Is this the intended functionality? What do I do if I want the object to just be temporary? Thx. Allen
|
|
Posted
about 16 years
ago
by
[email protected]
(Allen Romero)
Hey there. So i'm currently doing a lot of development on my local computer (using a sqllite db). I seem to keep having issues where upon trying to fetch the session, it's empty. Not sure if this is because I am constantly saving files, editing code, etc. I haven't tried this in production yet because it's
|
|
Posted
about 16 years
ago
by
[email protected]
(ogterran)
Hi, I downloaded the latest gaeutilities 1.4 and google app engine 1.3.3 In cache.py, line 202, 238, 279, etc, i get a compiler error on memcache.delete(), memcache.set() functions. Looking in google.appengine.api.memcache init.py, the set and
|