CherryPy sessions

I almost started pulling my hair over this. The part of the CherryPy book on sessions said that the following code would turn on sessions in CherryPy 2.1:

cherrypy.config.update({'session_filter.on' : True})

However trying to access session data after that resulted in a “500 Internal Error” page telling me that sessions weren’t enabled. Huh?

Luckliy I found this post on the topic. There’s apparently a typo in the book, the line should read:

cherrypy.config.update({'sessionFilter.on' : True})

4 Comments

  1. Magnus says:

    It seems I was looking in the wrong version of the book. The upcomming version (in the trunk) is published on the same page as the released version (for CherryPy v2.1).

  2. [...] I’ve spent a few hours tonight playing with django. I have a small project in mind and at first I thought I’d just go for cherrypy since I’ve played with that before. After hearing Guido’s praise for django on FLOSS weekly I decided to take a look at it. [...]

  3. yguaratã says:

    I have the 2.2.1 version, and both of them works(session_filter or sessionFilter).

  4. Tarek says:

    Try the new release of CherryPy, dealing with sessions there is much easier now. http://www.cherrypy.org/wiki/CherryPySessions

Leave a Reply

Please use markdown to make your comment beautiful.