哪些网站提供FTP上传?
我正在开发一个网站,该网站允许来自世界不同地区的用户上传最大 500 MB 的文件。
问题是:
- 由于它是 HTTP 传输,因此速度很慢。
- 由于它是 HTTP 传输,因此是不可恢复的。
用户确实因为这两个问题而深受其害。
因此,我想找到一个可以为我提供满足以下条件的服务的 FTP 提供商:
- 上传大小不超过 500 MB 的文件。
- 匿名上传。
- 如果可能,请使用浏览器内解决方案,即使用嵌入代码。
- 使用分布式网络,它可能会很快。
如果你们中有人遇到过这样或类似的情况,请与他们的网站分享提供商名称。
提前致谢...
I'm working on a website which allows users from different part of world to upload files of size upto 500 MB.
The problems are:
- As it is a HTTP transfer, it is slow.
- As it is a HTTP transfer, it is non-resumable.
Users really suffer because of these two problems.
So, I want to find a FTP provider which can provide me the services meeting the following criteria:
- To upload files with size upto 500 MB.
- Anonymous upload.
- If possible, in-browser solution i.e. using embed code.
- It should be fast, may be, using distributed networks.
Please if any of you guys came across a situation like this or similar to this share the proivder name with their websites.
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用嵌入式 Flash SWF 文件进行上传。它可以对每个块使用单独的 HTTP 请求来上传文件,向用户提供反馈,并提供重新启动的能力(只要页面未刷新)。
Google 最近将 GMail 改为使用嵌入式 Flash swf 来上传附件。它比旧的表单帖子上传要好得多。
You can use an embedded Flash SWF file to do the upload. It can upload the file in chunks using separate HTTP requests for each chunk, provide feedback to the user, and provide the ability to restart (as long as the page wasn't refreshed).
Google recently switched GMail to use an embedded Flash swf for attachment uploading. It's much nicer than the old form post upload.