问题标签 [uploadifive]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - 通过uploadify/uploadifive上传后如何从服务器中删除文件
我正在使用uploadifive在服务器上上传文件。当文件上传到服务器并且用户点击 (x) 图标时,上传将停止。
但是,文件上传后。如果用户单击 (x) 我想从服务器中完全删除该文件。
我尝试使用onCancel
事件,但这给了我本地机器上的文件信息。我将需要保存在服务器上的最终文件名(我在将它们复制到服务器之前重命名文件。)
当用户单击 (x) 图标时,如何删除他的文件。
谢谢
php - 如何使用 uploadifive 返回一个新的文件名
我正在使用uploadifive将文件上传到我的服务器。但在文件被移动到永久文件夹之前,(eg. move_uploaded_file($tempFile, $targetFile))
它们会被重命名。
过去我使用 uplodify 并且我的用户能够像这样返回新文件名
不幸的是,该onUploadSuccess
方法不适用于 uplodive。
如何将新文件名返回给客户端?
这是我用来重命名和上传文件的代码
谢谢
jquery - Uploadify - 按钮图片 css
据我所知,uploadify 按钮能够自定义按钮的 css ... 按钮图像怎么样?
在我当前使用的上传按钮中:
图像不显示单个...它重复并重复...
我在uploadify.css中尝试了css:
但到目前为止按钮图像是在uploadify JS中设置的......
有什么建议吗?非常感谢
laravel-4 - Laravel 4 and uploadifile not working always getting 500 (Internal Server Error)
I have my route:
Now i have uploadifive setup on my /file route and sending post request to /uploadfile
code for uploadfile is here:
but always i am getting 500 (Internal Server Error)
I checked my directory CHMOD is 0777 and i am linking to right route as when i remove above code from /uploadfile and place
it returns success.
I have tried adding blade form tag also but uploadifive actually does not depends upon form element at all. It post with AJAX.
javascript - 即使指定了 MIME 类型,也无法上传 .ppt 文件
我正在使用 uploadifive 上传我的文件。我在上传文件类型中指定的其他文件时仅上传 ppt 文件时遇到问题。出了什么问题?这是我的代码
即使指定了 ppt mime 类型,我也会收到一个错误,即它不被接受。这是错误的屏幕截图。
uploadifive - Uploadifive does not apply on dynamically created INPUT elements
This is my uploadifive setup:
Inside body:
While this is the javascript part:
All works as expected. The "file_row" div is being cloned but when clicking on the "Add Another File" and choosing the local file, nothing happens. There is no upload. If I maually copy the "file_row" div more times then the upload works fine, even more uploads at once. What am I doing wrong?
javascript - 上传错误
我正在使用 HTML5 版本的uploadify,称为uploadifive。
我正在按照信中的说明进行操作,但收到以下错误消息:
未捕获的类型错误:无法读取未定义的属性“addEventListener”
我正在使用最新版本的 Chrome。
当我使用非缩小版本时,我将错误消息跟踪到 uploadifive.js 脚本的第 631 行:
任何想法?
javascript - UploadiFive 禁止文件类型 AMR
我在我的应用程序中使用 uploadifive 作为文件上传器。
我正在使用 fileType: 告诉上传者所有支持的文件类型。
fileType:采用所有支持的文件类型的 MIME 类型。
.amr 文件始终被上传者禁止。
我已经尝试遵循 amr 文件 audio/amr、audio/Amr、audio/AMR 和 audio/x-amr 的 MIME 类型
所有这些都导致了被禁止的文件类型。
AMR 文件的正确 mime 类型是什么?
php - 从 UploadiFive 向 Codeigniter 控制器发送数据
我正在尝试使用UploadiFive
上传一些文件,并在上传文件时将信息添加到有关它们的数据库中。用户在表单中输入一些详细信息,然后单击上传,此时文件被上传,表单中的信息以相应的文件名添加到数据库中。
我已经可以上传文件了,但是每次文件上传完成时我都需要发布表格。它正在发布表单,但我正在努力从上传的文件中获取文件名。下面的代码:
HTML 页面:
然后我的控制器:
出于调试目的,我只是做了一个$image_file
.
uploadifive.php
除了脚本的响应之外,它似乎正在提交所有内容。当我使用 Firebug 时,我可以看到我确实收到了响应,而且看起来是正确的,但是响应 ( filearray
) 没有发布到要解码的表单上。
关于为什么我无法filename
从回复中得到任何想法?
javascript - 禁止的文件类型 docx
我正在测试 uploadifive 插件文件上传限制,我似乎无法让它接受 .docx 文件。在文档(http://www.uploadify.com/documentation/uploadifive/filetype/)中,我按照说明操作(排除一个小错误 - 管道“|”字符不起作用)并使用了它引用的媒体类型到(http://www.iana.org/assignments/media-types/media-types.xhtml)。似乎没有其他文件类型会导致问题,例如 .doc、.xlsx。
有没有解决方案,我已经检查了多个来源,并且据我所知,mime 类型(application/vnd.openxmlformats-officedocument.wordprocessingml.document)是否正确?