07/25/2016 at 4:06 pm
#384101
Keymaster
@ Darrin
Connections uses the core WP function wp_max_upload_size() to determine the max upload size of a file.
This core WP function uses the smallest of the server PHP environment vars upload_max_filesize and post_max_size.
One of those two seem to be set to 0TB.
Take a read of this tutorial:
https://kinsta.com/blog/increasing-the-maximum-upload-size-in-wordpress/
It seems pretty accurate as most do not even mention that post_max_size needs to be large than upload_max_filesize (not by much 1MB s/b more than plenty).
Also, I high recommend making the max less than the memory_limit value. Images when opened for processing such as scaling/cropping can take 3—5 times the available memory.
Hope this helps, let me know.
