This is most likely due to your PHP settings. A possible reason for this happening is:
upload_max_filesize
needs to be set to the max file size you would allow a each file to be.post_max_size
needs to be set to the max file size you would allow during a POST.For example, let's imagine you set you're upload_max_filesize
to be 200mb and you upload 4 videos at the same time:
By setting upload_max_filesize
to be 200mb video 1, 2, and 3 would successfully get uploaded. Video 4 is larger than the upload_max_filesize
and this file would result in a "Internal Server Error".
Now, let's take post_max_size
into consideration with the same example, but let's say post_max_size
is set to be 400mb.
post_max_size
which is set to 400mbupload_max_filesize
is 200mbIf you have any other issues, do not hesitate contacting us via email at [email protected] or via a message on the marketplace. We would love to help you out!