> Hello, > I'm new to pylons. Started out a couple of days ago. Comming from > django, I am attempting to move to pylons for my current project, and > everything went smoothly until i got to the point of installing pylons > on apache2 + mod_python. > > I followed the instructions on this page: > http://docs.pythonweb.org/display/pylonscookbook/Production+deployment+using+mod_python > > Everything seemed to work fine, but my sessions just dosent seem to > get saved when running from apache. > > It works fine when i do the paster serve command. > > Any ideas?
probably it's the same problem as in django + mod_python (or any python code using md5 under mod_python): http://code.djangoproject.com/wiki/ModPython You should modify beaker.api and change md5 import to sha and change length of slices in SignedCookie.value_decode from 32 to 40. Best regards, CS --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
