使用jQuery-File-Upload上传的最大文件大小是多少,我可以使用jQuery-File-Upload上传超过


What is max size of file to upload using jQuery-File-Upload, can i upload more than 5 gb of file size using jQuery-File-Upload?

我的服务器上有jQuery-File-Upload运行。问题是,上次我试图上传4gb的文件,上传失败。我怎样才能突破最大文件大小的限制?我认为2gb以下的文件上传没有问题。共享服务器,安装php 32位版本。在server php.ini设置如下:

memory_limit = 128M
upload_max_filesize = 10240M
post_max_size = 10240M
max_execution_time 120
max_input_time 60   
请谁来帮我解决这个问题。我想从2天开始解决这个问题,但没有运气。我不想用Java applet解决方案。如果我能使用文件分块、html5技术等解决这个问题,那就更好了。如果我的朋友有任何使用jQuery-File-Upload解决这类问题的经验,请分享。任何形式的帮助都会很感激。由于

是的,你可以上传最多5 GB,在你的PHP代码中添加以下

ini_set('set_memory_limit', -1);
如果你这样做,你可以在你的PHP代码设置其他的。