Tagged Questions

2
votes
7answers
95 views

Best way to handle very large http uploads and downloads on the server-side

I've an upcoming project where I will need to handle very large uploads from browsers (either the classic input type="file" or a Java Applet), and looking for the best tool to do t …
0
votes
3answers
27 views

gather file(s) from users

I'm looking for ways to gather files from clients. These clients have our software and we are currently using FTP for gathering files from them. The files are collected from the cl …
-3
votes
4answers
173 views

Is there any way to Upload Video Files using PHP ?

I want to upload and store video files to my server using PHP. Could any one please provide me the code? Please keep in mind that these files are generally larger than 200 MB.
0
votes
3answers
120 views

Upload/Download large files in a web app

Hi, 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 …
0
votes
2answers
62 views

What is the best strategy for handling large file upoads with Ruby on Rails?

I'm looking for effective strategies to handle large file uploads (between 10 and 40 mbs) effectively with Ruby on Rails. Ideally I'd like to implement a progress meter and some s …
4
votes
6answers
668 views

How do I upload large (> 25MB) files to a web service?

I have a web service that takes a byte[] and saves it. This works fine for "small" files, but once I hit a certain size the web service fails and returns "The request failed with …