uploadify

Uploading files greater than 2GB in ASP.NET MVC 3

寵の児 提交于 2019-12-01 17:52:01
I am trying to upload video files larger than 2GB on an ASP.NET MVC 3 project however the maximum file upload size for ASP.NET 4.0 seems to be at 2GB. Is there a way to exceed this limitation in ASP.NET/IIS? or what would another approach be to get around this? I am also using uploadify as my file upload control. Any help and resources for achieving this appreciated. Cheers According to my experience there is no way to upload file over 2Gb in a single request. There is a 2Gb limitation in IIS, and there is no workaround. In .Net 4.0 and earlier there were also a 2Gb (some people say 4Gb)

Using Uploadify to POST Directly to Amazon S3

流过昼夜 提交于 2019-12-01 17:25:09
Can anyone tell me how to use Uploadify to upload directly to Amazon S3? My code is as follows: $('#fileInput').uploadify({ 'fileDataName' : 'file', 'uploader' : 'uploadify.swf', 'script' : 'http://BUCKET-NAME-GOES-HERE.s3.amazonaws.com/', 'cancelImg' : 'cancel.png', 'method' : 'post', 'auto' : true, 'onError': function (a, b, c, d) { alert('error '+d.type+": "+d.info + ' name: ' + c.name + ' size: ' + c.size); }, 'scriptData' : { 'AWSAccessKeyId': "KEY-GOES-HERE", 'key': "${filename}", 'acl': "public-read", 'policy': "POLICY-STRING-GOES-HERE", 'signature': "SIGNATURE-GOES-HERE", 'success

Uploading files greater than 2GB in ASP.NET MVC 3

和自甴很熟 提交于 2019-12-01 16:27:07
问题 I am trying to upload video files larger than 2GB on an ASP.NET MVC 3 project however the maximum file upload size for ASP.NET 4.0 seems to be at 2GB. Is there a way to exceed this limitation in ASP.NET/IIS? or what would another approach be to get around this? I am also using uploadify as my file upload control. Any help and resources for achieving this appreciated. Cheers 回答1: According to my experience there is no way to upload file over 2Gb in a single request. There is a 2Gb limitation

Using Uploadify to POST Directly to Amazon S3

自古美人都是妖i 提交于 2019-12-01 16:25:07
问题 Can anyone tell me how to use Uploadify to upload directly to Amazon S3? My code is as follows: $('#fileInput').uploadify({ 'fileDataName' : 'file', 'uploader' : 'uploadify.swf', 'script' : 'http://BUCKET-NAME-GOES-HERE.s3.amazonaws.com/', 'cancelImg' : 'cancel.png', 'method' : 'post', 'auto' : true, 'onError': function (a, b, c, d) { alert('error '+d.type+": "+d.info + ' name: ' + c.name + ' size: ' + c.size); }, 'scriptData' : { 'AWSAccessKeyId': "KEY-GOES-HERE", 'key': "${filename}", 'acl'

get file names from uploadify jquery plugin

做~自己de王妃 提交于 2019-12-01 08:51:52
问题 that is my first post I am trying here, to get the names of the files that are uploaded, so that the user can delete it if desired, the same way as yahoo. $("#uploadifysub1").uploadify({ 'uploader' : 'JS/uploadify.swf', 'script' : 'JS/uploadify.php', 'cancelImg' : 'cancel.png', 'buttonImg' : 'attach.png', 'folder' : 'uploads', 'queueID' : 'divquickuploadProgress1', 'auto' : true, 'multi' : true }); the problem is that I cannot get files names, any suggestions? is there any function in

JEECG 上传插件升级——标签

扶醉桌前 提交于 2019-12-01 04:07:41
前言: 现有的uploadify上传是基于swf的,随着H5的普及,flash即将退出历史舞台,JEECG团队本着与时俱进的原则,将全面升级JEECG系统中的上传功能,采用新式上传插件plupload,此插件上传支持多种模式html5,flash,silverlight,html4,可通过配置实现优先模式,对于新版主流浏览器均可采用H5方式,对于不支持H5的低版本IE浏览器可走flash方式。以下讲解JEECG标签的升级。 一、升级步骤: 1.下载升级文件 链接: https://pan.baidu.com/s/1E_9FALsnHcajHjDRZ3_Q-A 密码:wexw 2.【新增文件】 增加JS/css,将plupload文件夹直接拷贝到src/main/webapp/plug-in/下 3.【修改文件】 拷贝BaseTag.java至src/main/java/org/jeecgframework/tag/core/easyui/下,覆盖更新,见[代码改动-1] 4.【修改文件】 拷贝Map.js至src/main/webapp/plug-in/tools/下,覆盖更新。 5.【新增文件】 拷贝UploadPlTag.java至src/main/java/org/jeecgframework/tag/core/easyui/下。 6.【新增文件】 拷贝plupload

Uploadify error #2038

倖福魔咒の 提交于 2019-12-01 01:04:55
Whenever I do a test with this script it continually fails at the upload attempt and gives the error IO #2038 The thing I can say for sure is it never even gets to the backend script of 'Upload.ashx' Which that tells me it is a problem is with the script somehow. Now I am doing this with localhost on my test machine. http://www.uploadify.com <head> <title></title> <script src="Scripts/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="Uploadify/jquery.uploadify.v2.1.4.min.js" type="text/javascript"></script> <script src="Uploadify/swfobject.js" type="text/javascript"></script>

Symfony2: upload a file using a file upload plugin

橙三吉。 提交于 2019-11-30 16:59:17
I want to upload a text file received via AJAX request in Symfony2 (using Uploadify 2.1.4). How can I process it in an action? I've found some info in the official docs , but I guess it is not what I'm looking for. For instance, I processed such a situation in Zend Framework this way: $adapter = new Zend_File_Transfer_Adapter_Http(); $adapter->setFilters(array( 'Rename' => array( 'target' => sprintf('%s/%d_%s', Zend_Registry::get('config')->uploads->uploadPath, time(), $adapter->getFileName(null, false), 'UTF-8'), 'overwrite' => true, ), )); try { $adapter->receive(); } catch (Zend_File

Uploadify Multiple buttons - one page

╄→гoц情女王★ 提交于 2019-11-30 15:50:25
问题 I am creating a website for a client, and he wants to be able to have in one page, many upload buttons. When he clicks select files, uploadify uploads the file to the server and then changes the value of the input field "Image" to the path of the image. The problem is that i cannot find a way to have multiple upload buttons in one page, where each one individually will fill it's own div's "Image" field. And the client will have n number of divs in the same page. Here's my js code: $(document)

Uploadify in Chrome return Aw, Snap page

为君一笑 提交于 2019-11-30 14:58:54
问题 from last update of chrome (Version 36.0.1985.125 m) i have problem with uplodify plugin/flash. Chrome shows Aw, Snap Page or sometimes He's Dead, Jim!. Here is my uplodify code: <input type="file" name="file_upload" id="file_upload_50"> <script type="text/javascript"> var basePath = "path to ressources"; var errorMessage = "Error Message"; var allowExts = "*.pdf; *.xls; *.xlsx; *.rar; *.zip"; $(document).ready(function() { var is_error = false; $('#file_upload_50').uploadify({ 'swf':