Re: [web2py] google app engine, file size limits

2010-02-22 Thread Thadeus Burgess
Well, with RAR files you can split them up into 1MB files. So you get the uploaded file, rar it in .9MB splits, upload to a table that stores "chunks". Now when you need the file, pull the "chunks" out of your table, and unrar them. I know that this works on the unix command line, not sure if the

[web2py] google app engine, file size limits

2010-02-22 Thread what_ho
Hi all - I wonder if anyone else has hit the file-size upload limits on GAE? This limit is supposed to be 10MB which for my needs would be fine. The GAE file system is read-only so I save upload data in the database like this: Field('file','upload',uploadfield='file_binary', ... Field('file_bina