Hi.
I am going to have an upload form with 2 upload fields. I was wondering if max_upload_size would be the total for both, or each invidual file?
thanks, mike.
michaelkenneth wrote:Hi. I am going to have an upload form with 2 upload fields. I was wondering if max_upload_size would be the total for both, or each invidual file? thanks, mike.
Both the MAX_FILE_SIZE that you put in the HTML form and the upload_max_filesize php.ini setting are referring to each individual file. Don't forget to adjust post_max_size too (if needed). It defaults to 8 Megabytes and it should be set big enough to handle the total of all of your largest files (that will be uploaded at the same time).
hth.
🙂