简体   繁体   中英

Multiple files not uploaded to server in php

I am using jquery multi file plugin to upload multiple files.The problem I face is not all files are uploaded to server.I am using jquery.MultiFile.js .I have put the following code to allow only 5MB should be the upoad file limit.This is workin fine but all files are not uploading.The post_max_size is 8M.My php version is 5.4

<input  type="file" name="file[]" class="multi _new_file_row maxsize-5128" />

When I tried to print the $_FILES['file'] from the loop,I am getting only 5 files.I didnt understand why this happens

change php.ini:

; Maximum allowed size for uploaded files.
upload_max_filesize = 40M

; Must be greater than or equal to upload_max_filesize
post_max_size = 40M

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM