I have a web app and I want to offer the possibility of upload and download big files (more than 2 gigas)
Is it possible? Does exist some open Source project that can help me?
Thank you very much
|
I have a web app and I want to offer the possibility of upload and download big files (more than 2 gigas) Is it possible? Does exist some open Source project that can help me? Thank you very much
| ||||
feedback
|
|
Yes, amazon S3 is great, i use it every day. If however you want to self-host the data, i suggest BITS - Background Intelligent Transfer Service- http://en.wikipedia.org/wiki/Background%5FIntelligent%5FTransfer%5FService http://www.codeplex.com/sharpbits | |||
|
feedback
|
ClarificationAs OP stated in a comment, this question is related to J2EE and Flex. It has nothing to do with PHP or any of the stated web servers. My original answerYes, what you are trying to do is possible. The problem that most people encounter is the limits set by PHP. Most notably these are These settings are best set on an "as-needed" basis (if possible) and not in your core configuration (php.ini, apache config, ...). Apart from these (server-side imposed) limits, there is nothing that limits you to upload large files. Maybe the web-server itself also imposes some limits. Apache has Another solution is to write a custom CGI script. But then you still have the limits imposed by the web server! It would help to know which language you are writing your website in... ;) | |||||
feedback
|
|
I'd recommend taking a look at Amazon's S3. It may be the solution you are looking for but if not it can provide you with an exmaple of how to do big file transfers using a HTTP REST request or SOAP+DIME web service. | |||
feedback
|