@ap3twe PHP only has a finite amount of memory. The “best” setting is to upload large files how they’re meant to be uploaded: in parts. Look into multipart uploading; services like Amazon S3 support it.
Sep 25, 2020
3
Level 5
PHP best setting for 1gb File upload..
We are implementing upload of files upwards of 1gb. What will be the best settings? Our server is dedicated servers no trouble of shared hosting arising. What will you suggest?
memory_limit max_input_time post_max_size upload_max_filesize
Level 75
Here is an example of uploading in chunks, perhaps will give you some ideas. https://www.tutorialspoint.com/how-to-upload-large-files-above-500mb-in-php
One using ajax, just ran across: https://stackoverflow.com/questions/25350089/efficient-method-for-large-file-uploads-0-5gb-through-php
Please or to participate in this conversation.