Requires code to configure
-
As far as I can tell, this is the only plugin for WordPress that allows chunked uploads, thus bypassing upload limits. Unfortunately, it also bundles some other, unrelated features that I do not need. Also, it limits the upload size to 95MB by default, and the chunk size to 1.9MB. It does not allow these settings to be overridden via the admin screen, you have to add code to your
wp-config.php
file:define( 'WPAWESOME_UPLOAD_LIMIT', '200MB' ); define( 'WPAWESOME_HUGE_UPLOAD_CHUNK_SIZE', '50MB' );
However, the chunked upload feature appears to work well, and is useful for sites running on Cloudflare that need to bypass it’s 100MB upload limit.
- The topic ‘Requires code to configure’ is closed to new replies.