Hi,
I’m trying to import a .wpress file from a previous site that is ~8gb but running into an issue where the maximum upload size is 128mb. I’ve done the following:
Updated wp-config.php to include:
@ini_set( ‘upload_max_filesize’ , ‘10000M’ );
@ini_set( ‘post_max_size’, ‘10000M’);
@ini_set( ‘memory_limit’, ‘10000M’ );
@ini_set( ‘max_execution_time’, ‘0’ );
@ini_set( ‘max_input_time’, ‘300’ );
Created a .htaccess file in /www/kinsta/public/website directory with
php_value upload_max_filesize 10000M
php_value post_max_size 10000M
php_value memory_limit 10000M
php_value max_execution_time 0
php_value max_input_time 300
Edited the wp migration plugin to have the constant
define( ‘AI1WM_MAX_FILE_SIZE’, 536870912 * 15 );
None of these have changed the upload limit. Looking for any guidance here!