Posts

Showing posts with the label June 11

How to Remove 512MB size limit on All-in-One WP Migration Plugin

Image
A Best plugin in aWordpress  market for Migrating WordPress website from one hosting or domin to another is All-in-One WP Migration.But as we all know in it’s Free Version it have a limit of MAX 512 MB. When you try to export a Backup file (.wpress)  and it exceed the limit you will get a prompt that you have exceeded the Limit But did you know you can easily remove the restriction by Just Replacing Some Code. All you need to find this file /wp-content/plugins/all-in-one-wp-migration/constants.php Open it From your Code Editor. Find these Lines in it, May be on Line 200. // ================= // = Max File Size = // ================= define( 'AI1WM_MAX_FILE_SIZE', 536870912 ); As you can see the Max file size limit is already set to 512MB. Now Replace it with // ================= // = Max File Size = // ================= define( 'AI1WM_MAX_FILE_SIZE', 5368709120 ); It will increase it’s size upto 5GB you can also use more then 5GB. And Now save your file...