[web2py] Re: SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem

2013-01-09 Thread Massimo Di Pierro
Looking into this. Can you confirm the problem is isolated to uploads on GAE when using SQLFORM.factory(...) with more than one table in the arguments? On Tuesday, 21 August 2012 13:19:47 UTC-5, JungHyun Kim wrote: > > > I found a work around to solve this problem > > I added these 3 lines after

[web2py] Re: SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem

2013-01-01 Thread Jeff Kusi
Is there any update on this bug? I am also experiencing it. I am using the workaround suggested by JungHyun Kim I am using 2.3.2. On Monday, August 20, 2012 12:49:14 PM UTC-4, JungHyun Kim wrote: > > Hello! > > I have a problem with upload field. > > I tried to upload a file through one form wi

[web2py] Re: SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem

2012-08-21 Thread JungHyun Kim
I found a work around to solve this problem I added these 3 lines after form accepted if request.env.web2py_runtime_gae: request.vars.file.file.seek(0) form.vars.file_blob = request.vars.file.file.read() Cause file_blob was None, I just s

[web2py] Re: SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem

2012-08-20 Thread JungHyun Kim
I opend the ticket. Issue 948 :SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem Thank you Massimo. 2012년 8월 21일 화요일 오후 12시 25분 57초 UTC+9, Massimo Di Pierro 님의 말: > > Please open a ticket about this. > > On Monday, 20 Aug

[web2py] Re: SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem

2012-08-20 Thread Massimo Di Pierro
Please open a ticket about this. On Monday, 20 August 2012 11:49:14 UTC-5, JungHyun Kim wrote: > > Hello! > > I have a problem with upload field. > > I tried to upload a file through one form with two tables using > SQLFORM.factory. > It worked OK on web2py rocket server. But with GAE server (bot

[web2py] Re: SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem

2012-08-20 Thread howesc
looks like it's still unsolved. i have not used SQLFORM.factory with multiple fields, and i have not used the blob data type in BigTable, rather i use blobstore image uploads. can you get it to work with just 1 table in your form? can you determine what vars are posted and what comes out of f