Re: [web2py] Re: Upload the more than 100 MB file

2012-06-20 Thread Sanjeet Roy
On Wed, Jun 20, 2012 at 6:37 PM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > web2py was tested with up to 2G upload and download. It always worked for > me. Some users have experience some problem using rocket we have been > investigating. Wort case scenario you can use a different we

Re: [web2py] Re: Upload the more than 100 MB file

2012-06-20 Thread Massimo Di Pierro
web2py was tested with up to 2G upload and download. It always worked for me. Some users have experience some problem using rocket we have been investigating. Wort case scenario you can use a different web server. Moreover the upload is definitively not stored in Ram (unless your app does). On

Re: [web2py] Re: Upload the more than 100 MB file

2012-06-20 Thread Sanjeet Roy
Hi Massimo, I am going to make a web application in which, requires to upload more than 100 Mb file at a time, please give us the details in web2py is it possible ? On Sunday, June 17, 2012 4:58:11 AM UTC+5:30, Massimo Di Pierro wrote: > > web2py does not load the uploaded file in Ram (unless th

Re: [web2py] Re: Upload the more than 100 MB file

2012-06-18 Thread Khalil KHAMLICHI
In case it might help, here is my trace back file and the controller (I am doing a manual insert, maybe I should not ?) : ## CONTROLLER STARTS HERE form = SQLFORM(db.fichiers, fields=['nom_fichier', 'fichier', 'project', 'description', 'users', 'deleted']) if form.v

Re: [web2py] Re: Upload the more than 100 MB file

2012-06-16 Thread Massimo Di Pierro
web2py does not load the uploaded file in Ram (unless the the is uploaded to db). The error reported Sanjeet is in fact different. It runs out of memory trying to serialize a helper, after the file has been uploaded completely. Massimo On Saturday, 16 June 2012 17:22:14 UTC-5, Khalil KHAMLICHI

Re: [web2py] Re: Upload the more than 100 MB file

2012-06-16 Thread Khalil KHAMLICHI
A few weeks ago, I had similar problem with uploading big files (starting from 100Mb), I could never figure out what was the reason ... I could just understand that web2py loaded the files into memory (for some reason) and that caused the whole process to crash, that was my analysis but maybe it wa

[web2py] Re: Upload the more than 100 MB file

2012-06-16 Thread Massimo Di Pierro
The error you get is not in uploading the file but in trying to display something very large. I suspect there is something in your model that is causing the problem. Can we see your model? On Saturday, 16 June 2012 00:15:35 UTC-5, Sanjeet Roy wrote: > > Can i upload the more than 100 mb file u