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',
...
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...
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...
Is there a a cfscript equivalent for cffile action="upload" in ColdFusion 9? Looking through the docs, there doesn't seem to be.
...
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?
...
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...
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...
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.
...
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',
...
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...
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...
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
...
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...
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 : ...
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...
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...
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?
...
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...
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...
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...