upload

Ajax Upload using valums ajax upload plugin inside a form.

Hi , i just came across this ajax upload plugin and i wish to use it inside a form as shown in the demo page example 3. For some reason i am not able to make it work. I am not sure what parameters come into the function. For example here is my sample code. $(document).ready(function(){ var upload = new AjaxUpload('property_i', ...

upload, stream and play video in asp.net

Hello guys, i have to make interface to upload large videos up to 30MB then stream it and convert into flv format and then play it in browser... this is required in my site in "Video Gallary " module. my webapplication is in C#, asp.net i can also use jquery. i have to send video file in chunks them merge it at server, stream it, create...

file upload cakephp

when uploading an image to the server using cakephp $this->Model->Behaviors->attach('ImageUpload', Configure::read('photo.files')); photo uploaded successfully, and the database fields also but shows following error instead of returning to index page. Notice (8): Undefined index: class [CORE\cake\libs\model\behaviors\upload.php, l...

Script function for file upload in ColdFusion 9

Is there a a cfscript equivalent for cffile action="upload" in ColdFusion 9? Looking through the docs, there doesn't seem to be. ...

Grails Expired sessions and uploads

I have an upload page, if a user goes to that upload page then leaves it for a while and their session times out, then they try to upload they will get redirected to the login page, but after they login it tries to submit the upload again causing an error. How would I avoid the upload being submitted again after login? ...

uploading a file on mac os x using adobe flex 3

Hi, I've created a fileUpload.mxml component in flex 3 which basically uploads m4a's to a designated server. The general code is below: private var uploadURL:URLRequest; private var file:FileReference; file=new FileReference(); file.browse(getTypes()); var params:URLVariables = new URLVariables(); params.fileID = model.selectedFileUp...

how to handle multiple file upload using PHP

hello i want to upload files using PHP but the problem is that i don't know how many files i will upload, my question is how can i upload files if i use file[] ? <form action="upload.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label><input type="file" name="file[]" id="file" /> <br /> <label for="fil...

Can we upload a video with j2me?

Hi, I am new to j2me.Is there any file field in j2me?If not, how will we upload an image or video in j2me? Thanks in advance. ...

Inaccurate progress bar when uploading large files using ASP.NET and Uploadify?

I've got an ASP.NET web application (utilizing WebForms) and am using Uploadify to handle uploading large files. This is done by posting the file to an HttpHandler. Example of code (simplified for demonstration purposes): $(".uploadify").uploadify({ 'uploader': '/uploadify/uploadify.swf', 'script': 'SaveUploadedFile.ashx', ...

Using Djangos ImageField to upload an image, rename it to a random filename and create thumbnail

Hay guys, I've wrote a simple upload method for my pictures class Picture(models.Model): path = models.CharField(max_length=200) filename = models.CharField(max_length=200) car = models.ForeignKey('Car') thumb_path = models.CharField(max_length=200) created_on = models.DateField(auto_now_add=True) updated_on = mo...

ImageField upload_to not working

Hay guys, I'm using an ImageField to upload files, however when i add upload_to to the ImageField it doesnt append the directory to the MEDIA_ROOT MEDIA_ROOT = '/Users/username/Django/site/assests/' picture = models.ImageField(upload_to='uploads') i get an error saying No such file or directory: u'/Users/username/Django/site/assest...

jquery + flash: looking for plugin that resize images before upload

i'm looking for a jquery plugin that can upload multiple images. I've tried uploadify and it works well. But with huge images it's very slow. is There anything like uploadify that resize also the images before upload them? thanks ...

Drupal image upload issues

When uploading images in Drupal I have continuously encounter an issue with the physical size of the image - not the size of the file. Let me explain further. An image could be a small file size (under the restrictions) but be larger than average on the screen. These images fail to upload in Drupal across all sites that I have built usi...

SWFUpload, why doesnt Firefox POST?

I implemented SWFUpload on my site and it works great in IE, but in Firefox no data is POSTed to the server. I have verified this using Charles. I noticed from the debug info that in IE the last two lines read: SWF DEBUG: Event: uploadSuccess: File ID: SWFUpload_0_0 Response Received: true Data: SWF DEBUG: Event: uploadComplete : ...

hosting acounts for large uploads

Hi, im wondering if anyone knows of any host providers ( uk preferably ) that deals mostly with accepting large file uploads. Most hosts only let you push something like 1.5mb ( thats taking into account the connection and the max execution time ). What i am looking for is a host specificaly for storing files on. I was going to create a...

High volume large file uploads

Trying to find a suitable method of accepting large file uploads that has to be scalable. By large I mean up to 5-10gb files. I also need to process the files afterwards. I was thinking of using PHP and HTTP PUT for uploads, then passing the stream of data directly to disk. I'd then process the file afterwards. Doing a custom server an...

Plupload works with Ruby on Rails?

I tried following the example at: http://www.plupload.com/example_custom.php But in the request, file is not sent to the method of the controller, only the name. Maybe I need to set in the configuration of Plupload, something like 'multipart = true' Any idea? ...

FCKeditor uploads but doesn't show in the folder?!

When i use the file browser to upload the image it shows it's in the correct folder but when I physically check the folder the image isn't there. When I "browse server" it shows the image is still there and I can put the image in the window. any idea why the image isn't actually there? Also, if i try to delete the folder I used to uplo...

How to go about saving images to disk at runtime

I'm creating a basic program (in Java) for a class that helps students study using flashcards, notes, etc. I need a way to allow the user to upload a certain image or video into my program so that it will be available even after they quit and relaunch. I'm thinking of something along the lines of writeObject and readObject and creati...

Why is this Perl CGI script failing to upload images correctly?

I have this code: use CGI; use File::Basename; use Image::Magick; use Time::HiRes qw(gettimeofday); my $query = new CGI; my $upload_dir = "../images"; #location on our server my $filename=$query->param("img"); my $timestamp = int (gettimeofday * 1000); my ( $name, $path, $extension ) = fileparse ( $filena...