I am using this plugin to migrate a WordPress site from another server.
My file is over 2GB, however, and the plugin interface tells me the file cannot be larger than 256MB.
I followed their advice and made edits to two files:
/var/www/html/wp-config.php:
/var/www/php.ini:
I restarted the server with these changes, but the limit remains. What can I do?
My file is over 2GB, however, and the plugin interface tells me the file cannot be larger than 256MB.
I followed their advice and made edits to two files:
/var/www/html/wp-config.php:
Code:
@ini_set( 'upload_max_filesize' , '3072M' );
@ini_set( 'post_max_size', '3072M');
@ini_set( 'memory_limit', '3072M' );
@ini_set( 'max_execution_time', '300' );
@ini_set( 'max_input_time', '300' );
Code:
upload_max_filesize = 3072M
post_max_size = 3072M
max_execution_time = 1800