Tagged Questions
0
votes
0answers
31 views
Upgrading a web portal: CherryPy2.2 to 3.2 Issues
I am a Java guy who has inherited a web portal upgrade project that uses CherryPy2.2. There is a doLogin Module that provides the login page and a Portal module that runs all the portal functions. I ...
0
votes
1answer
31 views
cherrypy call function when session expires
This is a duplicate of this question, but I did not find a suitable answer.
All I want to do is delete something in my database when a session expires. Is there any way to do this without a lot of ...
1
vote
0answers
29 views
Managing DB and Session operations BEFORE login
When a user comes to our webset/webapp, we would like the user to be able to go around the site and do things as normal (currently the site consists of almost exclusively CRUD operations). That way ...
0
votes
0answers
45 views
Cherrypy cookie names
I have 2 cherrypy web apps that use the authentication in this example
http://tools.cherrypy.org/wiki/AuthenticationAndAccessRestrictions
I changed the sessions from ram to file based, though. ...
0
votes
0answers
57 views
cherrypy session lock issue
I have an interesting problem with my api in my production environment. It seems that, sometimes, cherrypy will try to release a locked session but can't find the session.lock file.
Here's a ...
0
votes
1answer
109 views
csrf token invalid when user's session times out
Used this flask example for implementing a csrf token in my cherrypy app for all my site's forms...
flask csrf token example
However when a user's session times out the csrf token in session becomes ...
0
votes
1answer
239 views
How do you use cookies and HTTP Basic Authentication in CherryPy?
I have a CherryPy web application that requires authentication. I have working HTTP Basic Authentication with a configuration that looks like this:
app_config = {
'/' : {
...
1
vote
1answer
634 views
CherryPy Session Authentication?
I'm able to set session var's & get them too. BUT, the documentation for cherrypy.lib.cptools.SessionAuth is too cryptic for me to get anything out of it. I tried some things in code, but it ...
0
votes
1answer
60 views
How do I determine the current number of CherryPy sessions?
I found code for an older version of CherryPy:
len(cherrypy.session.cache)
http://tools.cherrypy.org/wiki/ActiveSessionCount
but this no longer works in CherryPy 3.2.2.
Error => AttributeError: ...
0
votes
1answer
139 views
call cherrypy function after session expiration
I have cherrypy server. It is working with files and I need to delete files when session expires. Is it possible call cherrypy function, when session is expired?
4
votes
2answers
597 views
cherrypy /dev/urandom (or equivalent) not found — error
I am running a cherrypy 3.2.0 server with Python 2.5.1, which gives the following error every few days on any instruction from UI until it is killed and re-started:-
[29/Mar/2012:06:37:57] HTTP ...
0
votes
1answer
240 views
Anyone have code examples for storing web sessions in mysql for cherrypy 3.2.2?
I found many examples for older versions of cherrypy but they each referenced importing modules not found in cherrypy 3.2.2. Looking here...
http://docs.cherrypy.org/dev/refman/lib/sessions.html
I ...
1
vote
2answers
2k views
CherryPy Custom Tool for user authentication
I'm trying to set up a simple way of decorating methods in my CherryPy controller classes so that a user is redirected to the login page if they haven't authenticated yet. I was going to do a basic ...
1
vote
0answers
305 views
cherrypy session disappears on transparent redirect
I have a checkout page that uses the braintree payment api. It works by submitting the credit card form directly to braintree's servers, at which point they are redirected to my 'confirm' page. This ...
0
votes
1answer
501 views
Bind arbitrary Python objects to CherryPy sessions
I'm using CherryPy to make a web-based frontend for SymPy that uses an asynchronous process library on the server side to allow for processing multiple requests at once without waiting for each one to ...
4
votes
1answer
851 views
CherryPy sessions for same domain, different port
Consider the script below. It will launch two subprocesses, each one a CherryPy app (hit Ctrl+C or whatever the KeyboardInterrupt combo is on your system to end them both). If you run it with CP 3.0 ...
0
votes
1answer
417 views
How do I set Session name with Cherrypy?
In PHP I would do it like this:
session_name("special_session_name");
So how do I do it with Cherrypy?
Just need to find exact equivalent for it.
PHP manual page:
http://fi2.php.net/session_name