php uploading large files

痞子三分冷 提交于 2019-11-29 05:19:09

instead uploading with standard form try uploading with xhr object (as you said) but using file chunk method to send file to server, in this way theorically you should have not upload limits. Try this upload jquery plugin that provides also php scripts:

http://code.google.com/p/ax-jquery-multiuploader/ REMOVE BECAUSE CANNOT MANTAIN

New link (free): http://www.albanx.com/download.php?item_id=4

Documentation: http://www.albanx.com/ajaxuploader/doc.php

Chris McKnight

If you are uploading very large files such as a few GB, then there are actually browser side limitations. It appears that most modern browsers are 2GB - 4GB. You should probably look into chunking (uploading parts of the file like a few MB at a time) your file uploads.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!