| Server IP : 167.99.224.18 / Your IP : 216.73.216.136 Web Server : Apache/2.4.41 (Ubuntu) System : Linux wordpress-ubuntu-s-1vcpu-1gb-nyc1-01 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.0.25 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins-old/duplicator/views/parts/ |
Upload File : |
<?php
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
use Duplicator\Core\MigrationMng;
use Duplicator\Utils\LinkManager;
use Duplicator\Views\AdminNotices;
?>
<div class="dpro-diagnostic-action-installer">
<p>
<b><?php echo __('Installation cleanup ran!', 'duplicator'); ?></b>
</p>
<?php
$fileRemoved = MigrationMng::cleanMigrationFiles();
$removeError = false;
if (count($fileRemoved) === 0) {
?>
<p>
<b><?php _e('No Duplicator files were found on this WordPress Site.', 'duplicator'); ?></b>
</p> <?php
} else {
foreach ($fileRemoved as $path => $success) {
if ($success) {
?><div class="success">
<i class="fa fa-check"></i> <?php _e("Removed", 'duplicator'); ?> - <?php echo esc_html($path); ?>
</div><?php
} else {
?><div class="failed">
<i class='fa fa-exclamation-triangle'></i> <?php _e("Found", 'duplicator'); ?> - <?php echo esc_html($path); ?>
</div><?php
$removeError = true;
}
}
}
foreach (MigrationMng::purgeCaches() as $message) {
?><div class="success">
<i class="fa fa-check"></i> <?php echo $message; ?>
</div>
<?php
}
if ($removeError) {
?>
<p>
<?php _e('Some of the installer files did not get removed, ', 'duplicator'); ?>
<span class="link-style" onclick="Duplicator.Tools.deleteInstallerFiles();">
<?php _e('please retry the installer cleanup process', 'duplicator'); ?>
</span><br>
<?php _e(' If this process continues please see the previous FAQ link.', 'duplicator'); ?>
</p>
<?php
} else {
delete_option(AdminNotices::OPTION_KEY_MIGRATION_SUCCESS_NOTICE);
}
?>
<div style="font-style: italic; max-width:900px; padding:10px 0 25px 0;">
<p>
<b><i class="fa fa-shield-alt"></i> <?php esc_html_e('Security Notes', 'duplicator'); ?>:</b>
<?php
_e(
' If the installer files do not successfully get removed with this action, '
. 'then they WILL need to be removed manually through your hosts control panel '
. 'or FTP. Please remove all installer files to avoid any security issues on this site.',
'duplicator'
);
?><br>
<?php
printf(
_x(
'For more details please visit the FAQ link %1$sWhich files need to be removed after an install?%2$s',
'%1$s and %2$s are <a> tags',
'duplicator'
),
'<a href="' . esc_url(LinkManager::getDocUrl('which-files-need-to-be-removed-after-an-install', 'migration-notice')) . '" target="_blank">',
'</a>'
);
?>
</p>
<p>
<b><i class="fa fa-thumbs-up"></i> <?php esc_html_e('Help Support Duplicator', 'duplicator'); ?>:</b>
<?php
_e('The Duplicator team has worked many years to make moving a WordPress site a much easier process. ', 'duplicator');
echo '<br/>';
printf(
esc_html_x(
'Show your support with a %1$s5 star review%2$s! We would be thrilled if you could!',
'%1$s and %2$s are <a> tags',
'duplicator'
),
'<a href="' . esc_url(\Duplicator\Core\Notifications\Review::getReviewUrl()) . '" target="_blank">',
'</a>'
);
?>
</p>
</div>
</div>