look at this page of web.py: http://webpy.org/cookbook/storeupload/ pay attention to how it write the file on the disk.
The current situation is: I launched a server in virtualbox with 256 mb memory and 512 swap. Just when I upload a file larger than 200 mb I get an error("the page is not available temporary").
I think that the python file-write function reads the whole file into the memory, then it crashed due to the limited memory.
Am I right? If so, is there any solution?
Thank you for your time.