file-upload

AIR/AS3: Upload portion of a File without creating a new new File chunk

Hi There, I'm currently building an AIR file uploader designed to handle multiple and very large files. I've played around with different methods of breaking up file into chunks(100mb) and progressively uploading each so that I can guard agains a failed upload/disconnection etc. I have managed to break up the file in smaller files whi...

Reporting Max Request Length Exceeded in an ASP.NET MVC view

I am using a custom HTTPModule to check the size of the request being posted. If it is larger than a given size I would like to stop the request but still render the view with an appropriate error message. I want to make it nice and simple to reuse so in my action perhaps having a ValidationAttribute on the model? Has anyone done this ...

How do I select the 'Browse' button from a file input html element with jQuery?

I have a page that is themed with jQuery UI, but I can't find how to select the file upload 'Browse' button to theme it as well. Is there a way to do this, or is this even possible? ...

How would I go about downloading a file from a submitted link then reuploading to my server for streaming?

I'm working on a project where a user can submit a link to a sound file hosted on another site through a form. I'd like to download that file to my server and make it available for streaming. I might have to upload it to Amazon S3. I'm doing this in Django but I'm new to Python. Can anyone point me in the right direction for how to do th...

Howto create a AJAX request with JavaScript that contains both file and post data

How can I create a HTTP request that sends one file and some post data with JavaScript that can be received by a PHP server? I have found the following suggestion but it does not seem to be complete xhr.open("POST", "upload.php"); var boundary = '---------------------------'; boundary += Math.floor(Math.random()*32768); boundary += Mat...

Facebook api video.upload requires HTTPS connection

I noticed a very funny error message Facebook API returns when I tried to use CURL to upload video to Facebook as below: This method requires an HTTPS connection Based on facebook api doc: developers.facebook.com/docs/ref … deo.upload it wrote that: Video uploads to Facebook happen on a specific set of servers. When you call video.u...

Heroku file upload problem

I've been having a problem uploading a CSV file to Heroku and processing it. It works fine in my local environment. Just do be clear, I don't need to save the file on Heroku, just access it during the request in order to convert it into a string for processing and importing into the DB. What I want to do is: Upload CSV file Strip out ...

How to do file upload in Azure-hosted Silverlight?

I am building an app that is entirely Silverlight. It is hosted on Windows Azure. How can I do file upload? There are a number of SL file uploaders, such as this one, which don't work for me because they are stand-alone SL controls - they can't be embedded in my app. I see a few SL file upload examples that seem straightforward enough,...

AjaxUpload $_FILES array is empty

I'm trying to use wordpress' built-in ajax to process an upload using the AjaxUpload script. The script was updated in august, and now i can't get it to work any more. http://valums.com/ajax-upload/ here's my jquery... this seems to be in place as i get input is transformed into an upload button and on selection of the image it begi...

scalable layout for storing and displaying user uploaded images

I am trying to figure out the best way to layout my directory structure so that I can store images from multiple users in a way that would be scalable when used in combination with a database. The database will store the absolute path to each image. So lets assume I was dealing with users' profile images each of which would have thumbn...

Need help debugging XHR-based Ajax Image Upload with ASP.NET MVC2

I'm attempting to use the script found from http://valums.com/ajax-upload/ My controller is as follows using System; using System.IO; using System.Text.RegularExpressions; using System.Web; using System.Web.Hosting; using System.Web.Mvc; using MHNHub.Areas.ViewModels; using MHNHub.Models; using MHNHub.ViewModels; namespace MHNHub.Area...

Concise example of file upload via Java lib Apache Commons

[edit] I've removed my convoluted and badly malformed question so that it doesn't detract from the very neat and correct answer beneath. Given the (surprising) difficulty of finding an on-line example for doing this incredibly common task, I hope Yoni gets a few more up-ticks for his response. So... the question in a nutshell... How do...

InputFile.PostedFile.ContentLength Units of measurement

Please can you tell me the units measured by InputFile.PostedFile.ContentLength . I need to make sure the file is less than 500k. Thanks. ...

AjaxFileUpload Plugin does not retrieve $_POST data

This is almost identical problem which I faced a few days ago. I fixed it then, but now it's not working any more. Well, some of it works. I'm using AjaxFileUpload Plugin to upload files in my WP plugin. This plugin calls uploader.php to process the upload form. I am able to get the filename (and other data) using $_FILES['uploadFile']...

Web based large files upload with resume facility in django or asp.net

Hi We are looking for an approach for developing a web based application which should have facility to upload large files (size upto 10 GB) with resume facility. We want to develop this application using python/django or C#/asp.net. Any suggestion would be appreciated. ...

How can I upload files on ASP.NET MVC2?

I'm developing a multilanguaged comics website and all the inserted comics must be in english and portuguese. I've got success on managing multiple titles doing so: ComicViewModel.cs: public class ComicViewModel { [Key] public int Id { get; set; } [Required(ErrorMessage="A data não pode ficar em branco.")] [DisplayNa...

Regarding Usage of Servlet in my application

I have a JSP form which is made of <input type="file"/> tag alone for allowing the user to browse and select the excel sheet. Am going to write a servlet program for uploading the file that is selected to the server. My questions here are, Which method must be used in the servlet program to receiving the file and processing? Such as ...

How to copy InMemoryUploadedFile object to disk

I am trying to catch a file sent with form and perform some operations on it before it will be saved. So I need to create a copy of this file in temp directory, but I don't know how to reach it. Shutil's functions fail to copy this file, since there is no path to it. So is there a way to do this operation in some other way ? My code : ...

How do I manage ajax uploads using SWF Upload for concurrent users?

Hi guys, I'm building a simple email functionality in my web application and would like to set it up to be able to send in attachments as well. The thing is that I want to set up the ability to upload files i.e attachemnts asynchronously. I'd like to use SWFUpload for this however 'ajax' uploaders upload the file to a location on the ser...

Does anyone have a good example / tutorial on how to use jQuery Form Upload?

After testing AjaxFileUpload Plugin I discovered that it does not let me retrieve $_POST data, as the plugin only submits $_FILE data. Therefore I turn to jQuery Form Plugin which is documented here: http://www.malsup.com/jquery/form/#file-upload Unfortunately, I feel the example is poor and doesn't really help me. I need to use IFrame ...