fine-uploader

How to use Fine Uploader js framework with ajax

喜欢而已 提交于 2019-12-24 07:59:04
问题 I want to use fineuploader JS library to use with upload multiple files. Now as per my requirement, user can select multiple files then those selected files should not be uploaded immediately instead of that user should above to review and modify them. once user is confirmed I want to get all the files list and then I need to process those files one by one by ajax JS function to send the files converted into base64 binary data to my server method. I have seen fileuploader documents and I know

Uncaught Error: Cannot find template script at ID 'qq-template'!

╄→尐↘猪︶ㄣ 提交于 2019-12-24 02:23:32
问题 I just downloaded my new "custom build" for Fine Uploader 4.0. My page was working fine on 3.9 which I installed and setup a few weeks ago. My Code: Click "Select Files" and pick the files you would like to upload. Then click "Upload Now" to start the transfer. <hr> <div id="fineuploader-s3"></div> <div id="triggerUpload" class="btn btn-primary" style="margin-top: 10px;"> <i class="icon-upload icon-white"></i> Upload now </div> <script src="http://code.jquery.com/jquery-latest.js"></script>

having trouble displaying an image uploaded to Amazon s3 by fine-uploader

﹥>﹥吖頭↗ 提交于 2019-12-23 20:21:34
问题 I am now trying to set up fineuploader-s3 to show an image of the file successfully uploaded on the aws server, as was done on the example page here: http://fineuploader.com/#s3-demo I am (still) using the code at https://github.com/Widen/fine-uploader-server/blob/master/php/s3/s3demo.php, and I’ve added uploadSuccess: { endpoint: "s3demo.php?success" } to the fine-uploader instance in my javascript file, so that the temporary link should be generated by the function in the s3demo.php file. I

Fastest way to upload big files [closed]

牧云@^-^@ 提交于 2019-12-23 05:57:25
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . I've implemented fineuploader to upload a file without reloading the page. Problem is it is very slow and potentially fails for vary large files (~300M). Note that I am only using Fineuploader 3.1, but expect it will not make a difference to use a more current version. My question

Fine Uploader only works for a single batch of files

て烟熏妆下的殇ゞ 提交于 2019-12-23 05:27:43
问题 My Fine Uploader implementation - using the core mode and jQuery - works fine until I try to upload a second batch of files. When the first batch of files have been uploaded (successfully), I can click the button to add files and get the dialog to select files. However, after I confirm the file(s) selection nothing happens. This bit of code in the complete handler is causing the trouble: $('#attachments-upload').button('reset'); // Bootstrap stateful button #attachments-upload is the id of

FineUploader drawThumbnail error

随声附和 提交于 2019-12-23 03:53:07
问题 I'm using the FineUploader core and I'm trying to show a thumbnail of the uploaded files. In a nutshell I'm using this: this.uploader = new qq.FineUploaderBasic({ callbacks: { onSubmit: function(id, fileName) { var canvas = document.createElement('canvas'); canvas.width = 50; canvas.height = 50; $('#file-'+id+' .upload_thumbnail').html(canvas); this.drawThumbnail(id, canvas, 50, false); } } }); However, I get the following error in Firebug: ReferenceError: MegaPixImage is not defined mpImg =

How to get all posted files at once using fineUploader?

纵饮孤独 提交于 2019-12-22 18:50:32
问题 I have a fineuploader that allows multiple files to be uploaded in MVC web app. Example: Suppose I upload 3 files 5MB, 20MB, 1MB I expect 3 files to arrive in the controller in single call but they are not. I want to iterate all 3 files (array) and process Question 1 : Is there a way to get all 3 files at once in the server? [HttpPost] public FineUploaderResult UploadFile(FineUpload upload) { //upload contains only one file at a time //for second file it gets call again even though I submit

FineUploader: S3 Access Denied Response when Canned ACL value is changed

假如想象 提交于 2019-12-22 04:48:15
问题 I have an S3 Fine Uploader implementation working great. By default, it uploads files fine but they are private. Based on FineUploader's documentation I added the objectProperties option as follows to my client-side js config for FineUploader to make the files public: objectProperties: { acl: "public-read" }, However I now get an access denied response from s3 during upload: <Error><Code>AccessDenied</Code><Message>Access Denied</Message> <RequestId>(removed)</RequestId> <HostId>(removed)<

In fine uploader, how to edit/update S3 file metadata for files that are uploaded in previous sessions?

血红的双手。 提交于 2019-12-20 04:15:15
问题 I have requirement in which user need to edit/update the s3 file metadata that are uploaded in the previous sessions. I have implemented Initial File List, but I need to make file metadata (filename, caption - new field in my case) editable in the display list. Can it be accomplished? I see edit files feature, but that is limited to before file gets uploaded. Looks like my requirement not easily supported out of the box FU. I have followed below approach. In template I have a button with text

Fineuploader - add jqCrop

∥☆過路亽.° 提交于 2019-12-20 03:03:21
问题 I already implemented drag&drop image sorting with Fineuploader (using jQuery Sortable for this), and now I would like to add jqCrop support (http://adriengibrat.github.io/jQuery-crop/). Ideally I would like to let the user crop the image before upload. What would be the best way to implent this? 回答1: First off, I so no reason to use jqCrop. It doesn't appear to do anything that JCrop doesn't already do, and jCrop is much more widely used (and probably tested as a result). With that in mind,