/home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers/Solo/Controller
Edit: /home/suroeste/public_html/wp-content/plugins/akeebabackupwp/helpers/Solo/Controller/Migreight.php (1067B)
getModel();
try
{
// Migrate the profiles
$model->migrateProfiles();
// Migrate the archives
$model->migrateArchives();
$this->setRedirect(
$this->container->router->route('index.php?view=migreight'),
Text::_('COM_AKEEBA_MIGREIGHT_COMPLETE')
);
}
catch (RuntimeException $e)
{
if ($e->getCode() != 8087)
{
throw $e;
}
$this->setRedirect(
$this->container->router->route('index.php?view=migreight'),
Text::_('COM_AKEEBA_MIGREIGHT_INCOMPLETE')
);
}
}
}