xfernandez
xfernandez

Reputation: 129

Upload/Download large files in a web app

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

Upvotes: 0

Views: 4647

Answers (3)

exhuma
exhuma

Reputation: 21727

Clarification

As 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 answer

Yes, what you are trying to do is possible.

The problem that most people encounter is the limits set by PHP. Most notably these are upload_max_filesize and post_max_size. Next thing you probably need is to increase the max_execution_time so that your script does not time out. The timeout is tricky though, as it relates to the clients upload speed.

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 LimitRequestBody and lighttpd has server.max-request-size for example.

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... ;)

Upvotes: 2

Alex
Alex

Reputation: 38519

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_Intelligent_Transfer_Service http://www.codeplex.com/sharpbits

Upvotes: 2

sipsorcery
sipsorcery

Reputation: 30699

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.

Upvotes: 1

Related Questions