Chris We have done a bunch of work here, and it seems that what is happening is that the form is posting data into Data.fs then out to the SQL database?? Is this normal?? Is there any way to bypass the this process of data going into the Data.fs file?? If we can not bypass the Data.fs is there any way around the 2 gig ceiling it seems to have?? Thanks for all the help!! Jay -----Original Message----- From: Jay Zeemer Sent: Tuesday, March 22, 2005 8:24 AM To: 'Chris Withers' Cc: zope@zope.org Subject: RE: [Zope] Data Insert Problems Chris We are using the xuser folder... Jay -----Original Message----- From: Chris Withers [mailto:chris@simplistix.co.uk] Sent: Tuesday, March 22, 2005 8:22 AM To: Jay Zeemer Cc: zope@zope.org Subject: Re: [Zope] Data Insert Problems Jay Zeemer wrote:
It is coming from the acl_users object.. We have it setup to authenticate against an external database, and to use cookies.. Do you believe this maybe our problem??
Almost certainly. What userfolder implementation are you using? cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk _______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
Hi Jay, Jay Zeemer wrote:
We have done a bunch of work here, and it seems that what is happening is that the form is posting data into Data.fs then out to the SQL database?? Is this normal??
No, but then again, XUF is a rather large an unweildy code base. What requirements are driving you to use XUF? Have you looked at SimpleUserFolder?
Is there any way to bypass the this process of data going into the Data.fs file??
More than likely.
If we can not bypass the Data.fs is there any way around the 2 gig ceiling it seems to have??
FileStorage doesn't have a 2 gig limit. Your python compilation may haev a 2GB limit, or your filesystem may do. In any case, this is FAQ that canbe googled for ;-) cheers, Chris -- Simplistix - Content Management, Zope & Python Consulting - http://www.simplistix.co.uk
Jay Zeemer wrote at 2005-3-22 12:47 -0500:
We have done a bunch of work here, and it seems that what is happening is that the form is posting data into Data.fs then out to the SQL database?? Is this normal??
No, looks as if you were doing something wrong...
Is there any way to bypass the this process of data going into the Data.fs file??
Zope only writes to the "Data.fs" when persistent objects are changed. When you want the data to be written to a relational database, you should not change persistent objects... Zope, itself, does not do it automatically. Your application must change the objects... -- Dieter
participants (3)
-
Chris Withers -
Dieter Maurer -
Jay Zeemer