All in One WP Migration Increase Upload Limit

All In One WP Migration is one of the easiest plugins to use for migrating sites.

I use it to test sites on different hosts.

Unfortunately, in the free version, the upload is limited to 512MB.

You can try to change the PHP settings in your host control panel, change the PHP max upload size and max post size.

If you have version 6.77 (older version) you can quickly and safely modify the code in the Plugin Editor under Tools in the WordPress dashboard:

Open the constants.php file and look for the following, at around line 250-300

// =================
// = Max File Size =
// =================
define( ‘AI1WM_MAX_FILE_SIZE’, 2 << 28 );

Change it to

define( 'AI1WM_MAX_FILE_SIZE', 536870912 * 20 ); 

Update then go back to AIOWP plugin and you should get 10GB upload.

Read this post for more details.

Of course, support the plugin developer.

Similar Posts