07/26/2016 at 3:30 pm
#384223
Participant
Thanks for your help Steven – I read through the tutorial and implemented the changes without success. I still get the message indicating that files larger than 0 TB cannot be uploaded. Any other ideas? What I have implemented is detailed below. Thank you! I have increased memory as follows:
-==[ PHP.INI FILE EDITS (/etc/php.ini) ]==-
post_max_size = 70M
upload_max_filesize = 65M
memory_limit = 128M
-==[ .HTACCESS FILE EDITS ]==-
# Increase maximum upload time
# Source: https://kinsta.com/blog/increasing-the-maximum-upload-size-in-wordpress
php_value upload_max_filesize 65M
php_value post_max_size 70M
php_value memory_limit 128M
-==[ WP-CONFIG.PHP FILE EDITS ]==-
// This might somehow increase the file upload limit in WP.
// Source: https://wordpress.org/support/topic/how-to-increase-the-max-upload-size
define('WP_MEMORY_LIMIT', '128M');
// More efforts to increase file upload size
// Source: https://kinsta.com/blog/increasing-the-maximum-upload-size-in-wordpress
@ini_set( 'upload_max_size' , '65M' );
@ini_set( 'post_max_size', '70M');
@ini_set( 'memory_limit', '128M' );
