We have a dedicated webserver with debian6 (squeeze), apache2, php5 + mysql5. This server is used as a lamp and has 1024mb random access memory. Diskspace is 100GB.
A client needs 5GB filesize uploads for video productions.
Is it possible with PHP/AJAX?
With POST the files get stored first into the RAM and after uploading all data stored to the disk, and that's why we are limited.
There must be a better option for uploading.
I tried with curl and got better results.
I found options like jUpload, where files get chunked.
How would you handle such large uploads?
A client needs 5GB filesize uploads for video productions.
Is it possible with PHP/AJAX?
With POST the files get stored first into the RAM and after uploading all data stored to the disk, and that's why we are limited.
There must be a better option for uploading.
I tried with curl and got better results.
I found options like jUpload, where files get chunked.
How would you handle such large uploads?
Comment