If you don't want to pay for the PRO version of this plugin, and you want to use the "Restore from Server" functionally that was present in the version 6.77, follow the instructions below:
- Open the js file: wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js
- On line 1208, replace the code below:
$('.ai1wm-backup-restore').click(function (e) {
e.preventDefault();
if (!!Ai1wm.MultisiteExtensionRestore) {
var restore = new Ai1wm.MultisiteExtensionRestore($(this).data('archive'));
} else if (!!Ai1wm.UnlimitedExtensionRestore) {
var restore = new Ai1wm.UnlimitedExtensionRestore($(this).data('archive'));
} else if (!!Ai1wm.FreeExtensionRestore) {
var restore = new Ai1wm.FreeExtensionRestore($(this).data('archive'));
} else {
var restore = new Ai1wm.Restore($(this).data('archive'));
}
});
with the following code:
$('#ai1wm-backups-list').on('click', '.ai1wm-backup-restore', function (e) {
e.preventDefault();
var modelimport = new Import();
var storage = Ai1wm.Util.random(12);
var options = Ai1wm.Util.form('#ai1wm-backups-form').concat({ name: 'storage', value: storage }).concat({ name: 'archive', value: $(this).data('archive') });
// Set global params
modelimport.setParams(options);
// Start import
modelimport.start();
});
- Go to your All-in-One WP Migration > Backups page and you should be able to use the Restore button now.
This restored my site successfully, but the site is not reachable again. While it was in the first place. So I reset the website and restored again, but it still doesn't work. I cleared cache and cookies in the browser but to no avail. The error says :
"The page isn’t redirecting properly
An error occurred during a connection to hitechpharma.net.
This problem can sometimes be caused by disabling or refusing to accept cookies.". Help!!!