DEV Community

Cover image for How to increase max upload size in All in one wp migration plugin
Tahsin Ahmed
Tahsin Ahmed

Posted on

4

How to increase max upload size in All in one wp migration plugin

While migrating WordPress site from local environment to server or server to server All in one wp migration is one of the best options,
But the problem is it has an upload limit of 512M which is not enough while working with a large project. To exceed this limit it offers a paid solution.
Increasing PHP and httaccess file upload limit doesn't work on it.
To extend this we have to use an older version of this plugin
I recommend Version 6.77 because after that this plugin restricted some features that are use full.
Download Link

After installing this, Goto

wp-content > plugins > all-in-one-migration > constant.php

Change this value according to your need

define('AI1WM_MAX_FILE_SIZE', 1024 * 1024 * 1024);

PS: values are in bytes

Oola your upload limit is extended.

Top comments (0)

Cloudinary image

Optimize, customize, deliver, manage and analyze your images.

Remove background in all your web images at the same time, use outpainting to expand images with matching content, remove objects via open-set object detection and fill, recolor, crop, resize... Discover these and hundreds more ways to manage your web images and videos on a scale.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay