In the Cheetah template, I have a file upload input control like this
<input type="file" name="file" ... ...>
The code works perfect when I upload a small file say 300KB, but when
the file size grows up, the speed becomes very slow on a localhost
server.
So I'm wondering are there anyone on this list meet this problem?
What's your solution?
thanks,
Alex
For the website I'm working on, we need to allow the users to upload a
non-trivial file, normally 10-40MB
The code works perfect when I upload a small file say 300KB, but when
the file size grows up, the speed becomes very slow on a localhost
server.
Do a web.input(file={}) and it won't load the file into RAM.