[web2py] Re: question about google app engine blob property

2011-12-18 Thread howesc
chawk, the problem is that the upload field in web2py does not use blobstore on GAE, it uses a blob property on the model. very different, and limited to 1mb (or maybe something smaller based on your test). if you want the file size permitted by the blobstore, check out http://www.web2pyslic

[web2py] Re: question about google app engine blob property

2011-12-18 Thread chawk
Massimo, This seems to be a GAE file size issue. i checked the error log and even though the file is under 1 mb it was saying that it was too large. Maybe the dimensions of the photo were too large as opposed to the actual disk space of the file? Either way it is not a problem with Web2py, just

[web2py] Re: question about google app engine blob property

2011-12-18 Thread chawk
This is testing on GAE Locally extra fields: auth.settings.extra_fields['auth_user']= [ Field('City'), Field('State'), Field('Country'), Field('Profile_Name'), Field('Avatar', 'upload')] When the user registers i get a "unrecoverable error message" after submission. I checked the db

[web2py] Re: question about google app engine blob property

2011-12-17 Thread Massimo Di Pierro
Can you shows us exactly which extra field causes the conflict? Massimo On Dec 17, 8:09 pm, chawk wrote: > I am trying to build an app for google app engine.  I currently use > the auth_user for website registration.   I added some extra fields to > the registration.  I was trying to add an addi