I am looking for a jquery plugin with no ajax upload, the only feature that i am looking for is allowing the user to select multiple files after clicking browse, and not limited to choose one file in a single browse?
I have tried multi file upload http://www.fyneworks.com/jquery/multiple-file-upload/
but the user should browse for each file separately; i.e users are not able to select multiple files at the same time?
Any recommendations?
You can have a look at the Fluid Infusion Uploader. The online demo is here. For more details, have a look at the API documentation.
Related
Please indicate if this is the wrong forum for this, but I am looking for a very rough scope estimate for adding a bulk upload feature. Our site is in PHP and the functionality for the bulk upload is basically we want to allow users to enter text into CSV files that will populate posts with that text. We will also allow users to enter image file names into the CSV and upload a folder with the images (and their file names) so that the posts contain the images as well.
The site itself already supports the posts and their respective fields through a web form so this simply allows a bulk feature on top of already-built functionality.
I'm trying to see if something like this would be on the order of days, weeks or months to build. Thanks.
I know that its easy to upload single image with symfony and doctrine2.
But i want to have system like Google docs where i can see the progress bar of current image upload using doctrine2.
I know want to use thirdparty plugin.
Because i need to create an entity for everyimage and store it database with some detail. So i can just bulk upload with third party software in directory
is it possible or not
You may try AX Ajax Multi Uploader
Here is their homepage http://www.albanx.com/ (not relevant though)
You can use javascript to upload the file at client side .
Refer http://fineuploader.com/demos.html.
you can browse your files and trigger upload automatically or if you want to process the data at client side (say for a preview) you can process and trigger the upload manually as well.
you can also refer http://www.queness.com/post/11434/7-javascript-ajax-file-upload-plugins
and choose the lib which fits your requirement.
I have a website in which user has ability to upload his documents in MS word, Power point and pdf types. Now what i want is that if user clicks a certain button or link, a new Word document opens up where he can create a new document and upload it on my website. How can i do that is there any way where it can be done on single click?
I think the simple or short solution would be to allow them to upload files, and limit to filetypes that you specify, and then have an alternative option for simply typing it into their browser like TinyMCE Or something like that.
At best you could maybe launch word, sort of like how apple itunes can be launched from the apple website, but there would be no way for them to save without uploading it the server, in which then again you would want a series of validators to make sure they aren't uploading malicious files.
I have a photo-upload form that allows a user to upload 1 photo. But my users are complaining that they want to upload many photos. How can I allow them to do that?
Right now I have this form for uploading:
http://www.hikingsanfrancisco.com/account/upload_hike_photos.php?hike_id=58
(I tried to paste code, but it didn't work somehow)
Any thoughts how to best go about it? Is there a way to loop through the selected files maybe? (I am using PHP)
Thanks,
Alex
Add more fields for uploading files, I don't know, maybe file or six, and the upload button will check through php which of them have information to start the upload, 1 at a time or course, in a php loop.
Here is a plugin that uses flash + javascript (MooTools) to do file upload. The upside to this plugin is that it's supported and you can Github it. It can have multiple photo uploads, limit max size, etc, and verify file information before upload. Also, has example for backend using PHP on how files are handled after it is uploaded.
Fancyupload
Features
Select and upload multiple files
Filter files by type in the select
dialog A lot of possible Events to
add your own behaviour
Show and filter useful file information before
the upload starts
Limit uploads by file count, type or size
Platform and server independent, just needs Flash9+ (> 95% penetration) which works on all browsers with it installed
Here is the jQuery plugin that does the same as the MooTools one:
Uploadify
Add new file inputs. Or use smth like swfuploader for file uploading.
I am using PHP5 and I want to create multiple file uploader of type Image, in such a way that user could select different images while holding Ctrl button and click mouse left button (While user doing so all images will push in an array) and when ever he click to Uplaod button then all images would be upload.
This can't be done using a normal upload dialogue: It supports only one file at a time (this changes in HTML 5, but it isn't there yet). Take a look at Flash based uploaders like SWFUpload or Uploadify.
Have a look at:
Upload Multiple Images at Once using PHP