Per this thread that seems to have been dropped (MaxTransientObjectsExceeded Error); I have been having a similar situation--i'm wondering if it's a situation in which a for loop is getting passed null values to set into session? Example: form = {} for k,v in request.form.items(): form[k] = v session['form'] = form # Assuming that there *is* a form... and if not, is that the MaxTrans error? Anyone with any ideas on this? Thanks, kris
Kris Erickson wrote:
Per this thread that seems to have been dropped (MaxTransientObjectsExceeded Error);
This means more unique users have accessed your site than the maximum configured number of sessions. Go to the session data container objectin the the temp folder and tweak the config so that the number of sessions allowed matches the number of people using your Zope instance... cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
Chris Withers wrote:
Kris Erickson wrote:
Per this thread that seems to have been dropped (MaxTransientObjectsExceeded Error);
This means more unique users have accessed your site than the maximum configured number of sessions.
Go to the session data container objectin the the temp folder and tweak the config so that the number of sessions allowed matches the number of people using your Zope instance...
In Zope < 2.7, you need to set the corresponding environment variable (see doc/ENVIRONMENT.txt) to make the change "persistent" (it doesn't do much good to set the value on the TemporaryStorage!) In Zope >= 2.7, zope.conf has a setting for this value. Tres. -- =============================================================== Tres Seaver tseaver@zope.com Zope Corporation "Zope Dealers" http://www.zope.com
participants (3)
-
Chris Withers -
Kris Erickson -
Tres Seaver