<?php
use Duplicator\Libs\Upsell;
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
/*IDE Helper*/
/* @var $Package DUP_Package */
function _duplicatorGetRootPath()
{
$txt = __('Root Path', 'duplicator');
$root = duplicator_get_abs_path();
$sroot = strlen($root) > 50 ? substr($root, 0, 50) . '...' : $root;
echo "<div title=" . str_replace('\\/', '/', json_encode($root)) . " class='divider'><i class='fa fa-folder-open'></i> {$sroot}</div>";
}
$archive_type_label = DUP_Settings::Get('archive_build_mode') == DUP_Archive_Build_Mode::ZipArchive ? "ZipArchive" : "DupArchive";
$archive_type_extension = DUP_Settings::Get('archive_build_mode') == DUP_Archive_Build_Mode::ZipArchive ? "zip" : "daf";
$duparchive_max_limit = DUP_Util::readableByteSize(DUPLICATOR_MAX_DUPARCHIVE_SIZE);
$skip_archive_scan = DUP_Settings::Get('skip_archive_scan');
?>
<!-- ================================================================
ARCHIVE -->
<div class="details-title">
<i class="far fa-file-archive"></i> <?php esc_html_e('Archive', 'duplicator');?>
<sup class="dup-small-ext-type"><?php echo esc_html($archive_type_extension); ?></sup>
<div class="dup-more-details" onclick="Duplicator.Pack.showDetailsDlg()" title="<?php esc_attr_e('Show Scan Details', 'duplicator');?>"><i class="fa fa-window-maximize"></i></div>
</div>
<div class="scan-header scan-item-first">
<i class="fas fa-folder-open"></i>
<?php esc_html_e("Files", 'duplicator'); ?>
<div class="scan-header-details">
<div class="dup-scan-filter-status">
<?php
if ($Package->Archive->ExportOnlyDB) {
echo '<i class="fa fa-filter fa-sm"></i> ';
esc_html_e('Database Only', 'duplicator');
} elseif ($Package->Archive->FilterOn) {
echo '<i class="fa fa-filter fa-sm"></i> ';
esc_html_e('Enabled', 'duplicator');
}
?>
</div>
<div id="data-arc-size1"></div>
<i class="fa fa-question-circle data-size-help"
data-tooltip-title="<?php esc_attr_e('Archive Size', 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('This size includes only files BEFORE compression is applied. It does not include the size of the '
. 'database script or any applied filters. Once complete the package size will be smaller than this number.', 'duplicator'); ?>"></i>
<div class="dup-data-size-uncompressed"><?php esc_html_e("uncompressed"); ?></div>
</div>
</div>
<?php
if ($Package->Archive->ExportOnlyDB) { ?>
<div class="scan-item ">
<div class='title' onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Database Only', 'duplicator');?></div>
<div id="only-db-scan-status"><div class="badge badge-warn"><?php esc_html_e("Notice", 'duplicator'); ?></div></div>
</div>
<div class="info">
<?php esc_html_e("Only the database and a copy of the installer will be included in the archive file. This notice simply indicates that the package "
. "will not be capable of restoring a full WordPress site, but only the database. If this is the desired intention then this notice can be ignored.", 'duplicator'); ?>
</div>
</div>
<?php
} elseif ($skip_archive_scan) { ?>
<div class="scan-item ">
<div class='title' onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Skip archive scan enabled', 'duplicator');?></div>
<div id="skip-archive-scan-status"><div class="badge badge-warn"><?php esc_html_e("Notice", 'duplicator'); ?></div></div>
</div>
<div class="info">
<?php esc_html_e("All file checks are skipped. This could cause problems during extraction if problematic files are included.", 'duplicator'); ?>
<br><br>
<b><?php esc_html_e(" Disable the advanced option to re-enable file controls.", 'duplicator'); ?></b>
</div>
</div>
<?php
} else {
?>
<!-- ============
TOTAL SIZE -->
<div class="scan-item">
<div class="title" onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Size Checks', 'duplicator');?></div>
<div id="data-arc-status-size"></div>
</div>
<div class="info" id="scan-itme-file-size">
<b><?php esc_html_e('Size', 'duplicator');?>:</b> <span id="data-arc-size2"></span> |
<b><?php esc_html_e('File Count', 'duplicator');?>:</b> <span id="data-arc-files"></span> |
<b><?php esc_html_e('Directory Count', 'duplicator');?>:</b> <span id="data-arc-dirs"></span> <br/>
<?php
_e('Compressing larger sites on <i>some budget hosts</i> may cause timeouts. ', 'duplicator');
echo "<i> <a href='javascipt:void(0)' onclick='jQuery(\"#size-more-details\").toggle(100);return false;'>[" . esc_html__('more details...', 'duplicator') . "]</a></i>";
?>
<div id="size-more-details">
<?php
echo "<b>" . esc_html__('Overview', 'duplicator') . ":</b><br/>";
$dup_byte_size = '<b>' . DUP_Util::byteSize(DUPLICATOR_SCAN_SIZE_DEFAULT) . '</b>';
printf(esc_html__('This notice is triggered at [%s] and can be ignored on most hosts. If during the build process you see a "Host Build Interrupt" message then this '
. 'host has strict processing limits. Below are some options you can take to overcome constraints set up on this host.', 'duplicator'), $dup_byte_size);
echo '<br/><br/>';
echo "<b>" . esc_html__('Timeout Options', 'duplicator') . ":</b><br/>";
echo '<ul>';
echo '<li>' . esc_html__('Apply the "Quick Filters" below or click the back button to apply on previous page.', 'duplicator') . '</li>';
echo '<li>' . esc_html__('See the FAQ link to adjust this hosts timeout limits: ', 'duplicator') .
" <a href='https://snapcreek.com/duplicator/docs/faqs-tech/?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_campaign=problem_resolution&utm_content=pkg_s2scan3_tolimits#faq-trouble-100-q' target='_blank'>" .
esc_html__('What can I try for Timeout Issues?', 'duplicator') . '</a></li>';
echo '<li>' . esc_html__('Consider trying multi-threaded support in ', 'duplicator');
echo "<a href='" . esc_url(Upsell::getCampaignUrl(array('utm_medium' => 'package-build-scan', 'utm_content' => 'Multi Threaded Get Pro'))) . "' target='_blank'>" . esc_html__('Duplicator Pro.', 'duplicator') . "</a>";
echo '</li>';
echo '</ul>';
$hlptxt = sprintf(
__('Files over %1$s are listed below. Larger files such as movies or zipped content can cause timeout issues on some budget hosts. If you are having '
. 'issues creating a package try excluding the directory paths below or go back to Step 1 and add them.', 'duplicator'),
DUP_Util::byteSize(DUPLICATOR_SCAN_WARNFILESIZE)
);
?>
</div>
<script id="hb-files-large" type="text/x-handlebars-template">
<div class="container">
<div class="hdrs">
<span style="font-weight:bold">
<?php esc_html_e('Quick Filters', 'duplicator'); ?>
<sup><i class="fas fa-question-circle fa-sm" data-tooltip-title="<?php esc_attr_e("Large Files", 'duplicator'); ?>" data-tooltip="<?php echo esc_attr($hlptxt); ?>"></i></sup>
</span>
<div class='hdrs-up-down'>
<i class="fa fa-caret-up fa-lg dup-nav-toggle" onclick="Duplicator.Pack.toggleAllDirPath(this, 'hide')" title="<?php esc_attr_e("Hide All", 'duplicator'); ?>"></i>
<i class="fa fa-caret-down fa-lg dup-nav-toggle" onclick="Duplicator.Pack.toggleAllDirPath(this, 'show')" title="<?php esc_attr_e("Show All", 'duplicator'); ?>"></i>
</div>
</div>
<div class="data">
<?php _duplicatorGetRootPath(); ?>
{{#if ARC.FilterInfo.Files.Size}}
{{#each ARC.FilterInfo.TreeSize as |directory|}}
<div class="directory">
<i class="fa fa-caret-right fa-lg dup-nav" onclick="Duplicator.Pack.toggleDirPath(this)"></i>
{{#if directory.iscore}}
<i class="far fa-window-close chk-off" title="<?php esc_attr_e('Core WordPress directories should not be filtered. Use caution when excluding files.', 'duplicator'); ?>"></i>
{{else}}
<input type="checkbox" name="dir_paths[]" value="{{directory.dir}}" id="lf_dir_{{@index}}" onclick="Duplicator.Pack.filesOff(this)" />
{{/if}}
<label for="lf_dir_{{@index}}" title="{{directory.dir}}">
<i class="size">[{{directory.size}}]</i> {{directory.sdir}}/
</label> <br/>
<div class="files">
{{#each directory.files as |file|}}
<input type="checkbox" name="file_paths[]" value="{{file.path}}" id="lf_file_{{directory.dir}}-{{@index}}" />
<label for="lf_file_{{directory.dir}}-{{@index}}" title="{{file.path}}">
<i class="size">[{{file.bytes}}]</i> {{file.name}}
</label> <br/>
{{/each}}
</div>
</div>
{{/each}}
{{else}}
<?php
if (! isset($_GET['retry'])) {
_e('No large files found during this scan.', 'duplicator');
} else {
echo "<div style='color:maroon'>";
_e('No large files found during this scan. If you\'re having issues building a package click the back button and try '
. 'adding a file filter to non-essential files paths like wp-content/uploads. These excluded files can then '
. 'be manually moved to the new location after you have ran the migration installer.', 'duplicator');
echo "</div>";
}
?>
{{/if}}
</div>
</div>
<div class="apply-btn" style="margin-bottom:5px;float:right">
<div class="apply-warn">
<?php esc_html_e('*Checking a directory will exclude all items recursively from that path down. Please use caution when filtering directories.', 'duplicator'); ?>
</div>
<button type="button" class="button-small duplicator-quick-filter-btn" disabled="disabled" onclick="Duplicator.Pack.applyFilters(this, 'large')">
<i class="fa fa-filter fa-sm"></i> <?php esc_html_e('Add Filters & Rescan', 'duplicator');?>
</button>
<button type="button" class="button-small" onclick="Duplicator.Pack.showPathsDlg('large')" title="<?php esc_attr_e('Copy Paths to Clipboard', 'duplicator');?>">
<i class="fa far fa-clipboard" aria-hidden="true"></i>
</button>
</div>
<div style="clear:both"></div>
</script>
<div id="hb-files-large-result" class="hb-files-style"></div>
</div>
</div>
<!-- ======================
ADDON SITES -->
<div id="addonsites-block" class="scan-item">
<div class='title' onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Addon Sites', 'duplicator');?></div>
<div id="data-arc-status-addonsites"></div>
</div>
<div class="info">
<div style="margin-bottom:10px;">
<?php
printf(__('An "Addon Site" is a separate WordPress site(s) residing in subdirectories within this site. If you confirm these to be separate sites, '
. 'then it is recommended that you exclude them by checking the corresponding boxes below and clicking the \'Add Filters & Rescan\' button. To backup the other sites '
. 'install the plugin on the sites needing to be backed-up.'));
?>
</div>
<script id="hb-addon-sites" type="text/x-handlebars-template">
<div class="container">
<div class="hdrs">
<span style="font-weight:bold">
<?php esc_html_e('Quick Filters', 'duplicator'); ?>
</span>
</div>
<div class="data">
{{#if ARC.FilterInfo.Dirs.AddonSites.length}}
{{#each ARC.FilterInfo.Dirs.AddonSites as |path|}}
<div class="directory">
<input type="checkbox" name="dir_paths[]" value="{{path}}" id="as_dir_{{@index}}"/>
<label for="as_dir_{{@index}}" title="{{path}}">
{{path}}
</label>
</div>
{{/each}}
{{else}}
<?php esc_html_e('No add on sites found.'); ?>
{{/if}}
</div>
</div>
<div class="apply-btn">
<div class="apply-warn">
<?php esc_html_e('*Checking a directory will exclude all items in that path recursively.'); ?>
</div>
<button type="button" class="button-small duplicator-quick-filter-btn" disabled="disabled" onclick="Duplicator.Pack.applyFilters(this, 'addon')">
<i class="fa fa-filter fa-sm"></i> <?php esc_html_e('Add Filters & Rescan');?>
</button>
</div>
</script>
<div id="hb-addon-sites-result" class="hb-files-style"></div>
</div>
</div>
<!-- ============
FILE NAME CHECKS -->
<div class="scan-item">
<div class="title" onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Name Checks', 'duplicator');?></div>
<div id="data-arc-status-names"></div>
</div>
<div class="info">
<?php
_e('Unicode and special characters such as "*?><:/\|", can be problematic on some hosts.', 'duplicator');
esc_html_e(' Only consider using this filter if the package build is failing. Select files that are not important to your site or you can migrate manually.', 'duplicator');
$txt = __('If this environment/system and the system where it will be installed are set up to support Unicode and long paths then these filters can be ignored. '
. 'If you run into issues with creating or installing a package, then is recommended to filter these paths.', 'duplicator');
?>
<script id="hb-files-utf8" type="text/x-handlebars-template">
<div class="container">
<div class="hdrs">
<span style="font-weight:bold"><?php esc_html_e('Quick Filters', 'duplicator');?></span>
<sup><i class="fas fa-question-circle fa-sm" data-tooltip-title="<?php esc_attr_e("Name Checks", 'duplicator'); ?>" data-tooltip="<?php echo esc_attr($txt); ?>"></i></sup>
<div class='hdrs-up-down'>
<i class="fa fa-caret-up fa-lg dup-nav-toggle" onclick="Duplicator.Pack.toggleAllDirPath(this, 'hide')" title="<?php esc_attr_e("Hide All", 'duplicator'); ?>"></i>
<i class="fa fa-caret-down fa-lg dup-nav-toggle" onclick="Duplicator.Pack.toggleAllDirPath(this, 'show')" title="<?php esc_attr_e("Show All", 'duplicator'); ?>"></i>
</div>
</div>
<div class="data">
<?php _duplicatorGetRootPath(); ?>
{{#if ARC.FilterInfo.TreeWarning}}
{{#each ARC.FilterInfo.TreeWarning as |directory|}}
<div class="directory">
{{#if directory.count}}
<i class="fa fa-caret-right fa-lg dup-nav" onclick="Duplicator.Pack.toggleDirPath(this)"></i>
{{else}}
<i class="empty"></i>
{{/if}}
{{#if directory.iscore}}
<i class="far fa-window-close chk-off" title="<?php esc_attr_e('Core WordPress directories should not be filtered. Use caution when excluding files.', 'duplicator'); ?>"></i>
{{else}}
<input type="checkbox" name="dir_paths[]" value="{{directory.dir}}" id="nc1_dir_{{@index}}" onclick="Duplicator.Pack.filesOff(this)" />
{{/if}}
<label for="nc1_dir_{{@index}}" title="{{directory.dir}}">
<i class="count">({{directory.count}})</i>
{{directory.sdir}}/
</label> <br/>
<div class="files">
{{#each directory.files}}
<input type="checkbox" name="file_paths[]" value="{{path}}" id="warn_file_{{directory.dir}}-{{@index}}" />
<label for="warn_file_{{directory.dir}}-{{@index}}" title="{{path}}">
{{name}}
</label> <br/>
{{/each}}
</div>
</div>
{{/each}}
{{else}}
<?php esc_html_e('No file/directory name warnings found.', 'duplicator');?>
{{/if}}
</div>
</div>
<div class="apply-btn">
<div class="apply-warn">
<?php esc_html_e('*Checking a directory will exclude all items recursively from that path down. Please use caution when filtering directories.', 'duplicator'); ?>
</div>
<button type="button" class="button-small duplicator-quick-filter-btn" disabled="disabled" onclick="Duplicator.Pack.applyFilters(this, 'utf8')">
<i class="fa fa-filter fa-sm"></i> <?php esc_html_e('Add Filters & Rescan', 'duplicator');?>
</button>
<button type="button" class="button-small" onclick="Duplicator.Pack.showPathsDlg('utf8')" title="<?php esc_attr_e('Copy Paths to Clipboard', 'duplicator');?>">
<i class="fa far fa-clipboard" aria-hidden="true"></i>
</button>
</div>
</script>
<div id="hb-files-utf8-result" class="hb-files-style"></div>
</div>
</div>
<!-- ======================
UNREADABLE FILES -->
<div id="scan-unreadable-items" class="scan-item">
<div class='title' onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Read Checks');?></div>
<div id="data-arc-status-unreadablefiles"></div>
</div>
<div class="info">
<?php
esc_html_e('PHP is unable to read the following items and they will NOT be included in the package. Please work with your host to adjust the permissions or resolve the '
. 'symbolic-link(s) shown in the lists below. If these items are not needed then this notice can be ignored.');
?>
<script id="unreadable-files" type="text/x-handlebars-template">
<div class="container">
<div class="data">
<b><?php esc_html_e('Unreadable Items:');?></b> <br/>
<div class="directory">
{{#if ARC.UnreadableItems}}
{{#each ARC.UnreadableItems as |uitem|}}
<i class="fa fa-lock fa-xs"></i> {{uitem}} <br/>
{{/each}}
{{else}}
<i><?php esc_html_e('No unreadable items found.');?><br/></i>
{{/if}}
</div>
<b><?php esc_html_e('Recursive Links:');?> </b> <br/>
<div class="directory">
{{#if ARC.RecursiveLinks}}
{{#each ARC.RecursiveLinks as |link|}}
<i class="fa fa-lock fa-xs"></i> {{link}} <br/>
{{/each}}
{{else}}
<i><?php esc_html_e('No recursive sym-links found.');?><br/></i>
{{/if}}
</div>
</div>
</div>
</script>
<div id="unreadable-files-result" class="hb-files-style"></div>
</div>
</div>
<?php } ?>
<!-- ============
DATABASE -->
<div id="dup-scan-db">
<div class="scan-header">
<i class="fas fa-database fa-sm"></i>
<?php esc_html_e("Database", 'duplicator'); ?>
<div class="scan-header-details">
<div class="dup-scan-filter-status">
<?php
if ($Package->Database->FilterOn) {
echo '<i class="fa fa-filter fa-sm"></i> ';
esc_html_e('Enabled', 'duplicator');
}
?>
</div>
<div id="data-db-size1"></div>
<i class="fa fa-question-circle data-size-help"
data-tooltip-title="<?php esc_attr_e("Database Size:", 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('The database size represents only the included tables. The process for gathering the size uses the query SHOW TABLE STATUS. '
. 'The overall size of the database file can impact the final size of the package.', 'duplicator'); ?>"></i>
<div class="dup-data-size-uncompressed"><?php esc_html_e("uncompressed"); ?></div>
</div>
</div>
<div class="scan-item">
<div class="title" onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Overview', 'duplicator');?></div>
<div id="data-db-status-size"></div>
</div>
<div class="info">
<?php echo '<b>' . esc_html__('TOTAL SIZE', 'duplicator') . ' ⇛ </b>'; ?>
<b><?php esc_html_e('Size', 'duplicator');?>:</b> <span id="data-db-size2"></span> |
<b><?php esc_html_e('Tables', 'duplicator');?>:</b> <span id="data-db-tablecount"></span> |
<b><?php esc_html_e('Records', 'duplicator');?>:</b> <span id="data-db-rows"></span><br/>
<?php
$dup_scan_tbl_total_trigger_size = DUP_Util::byteSize(DUPLICATOR_SCAN_DB_ALL_SIZE) . ' OR ' . number_format(DUPLICATOR_SCAN_DB_ALL_ROWS);
printf(__('Total size and row counts are approximate values. The thresholds that trigger notices are %1$s records total for the entire database. Larger databases '
. 'take more time to process. On some budget hosts that have cpu/memory/timeout limits this may cause issues.', 'duplicator'), $dup_scan_tbl_total_trigger_size);
echo '<br/><hr size="1" />';
//TABLE DETAILS
echo '<b>' . __('TABLE DETAILS:', 'duplicator') . '</b><br/>';
$dup_scan_tbl_trigger_size = DUP_Util::byteSize(DUPLICATOR_SCAN_DB_TBL_SIZE) . ', ' . number_format(DUPLICATOR_SCAN_DB_TBL_ROWS);
printf(esc_html__('The notices for tables are %1$s records or names with upper-case characters. Individual tables will not trigger '
. 'a notice message, but can help narrow down issues if they occur later on.', 'duplicator'), $dup_scan_tbl_trigger_size);
echo '<div id="dup-scan-db-info"><div id="data-db-tablelist"></div></div>';
//RECOMMENDATIONS
echo '<br/><hr size="1" />';
echo '<b>' . esc_html__('RECOMMENDATIONS:', 'duplicator') . '</b><br/>';
echo '<div style="padding:5px">';
$lnk = '<a href="maint/repair.php" target="_blank">' . esc_html__('repair and optimization', 'duplicator') . '</a>';
printf(__('1. Run a %1$s on the table to improve the overall size and performance.', 'duplicator'), $lnk);
echo '<br/><br/>';
_e('2. Remove post revisions and stale data from tables. Tables such as logs, statistical or other non-critical data should be cleared.', 'duplicator');
echo '<br/><br/>';
$lnk = '<a href="?page=duplicator-settings&tab=package" target="_blank">' . esc_html__('Enable mysqldump', 'duplicator') . '</a>';
printf(__('3. %1$s if this host supports the option.', 'duplicator'), $lnk);
echo '<br/><br/>';
$lnk = '<a href="http://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_lower_case_table_names" target="_blank">' . esc_html__('lower_case_table_names', 'duplicator') . '</a>';
printf(__('4. For table name case sensitivity issues either rename the table with lower case characters or be prepared to work with the %1$s system variable setting.', 'duplicator'), $lnk);
echo '</div>';
?>
</div>
</div>
<?php
$triggers = $GLOBALS['wpdb']->get_col("SHOW TRIGGERS", 1);
if (count($triggers)) { ?>
<div class="scan-item">
<div class='title' onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Triggers', 'duplicator');?></div>
<div id="data-arc-status-triggers"></div>
</div>
<div class="info">
<script id="hb-triggers-result" type="text/x-handlebars-template">
<div class="container">
<div class="data">
<span class="color:maroon">
<?php
$lnk = '<a href="https://dev.mysql.com/doc/refman/8.0/en/triggers.html" target="_blank">' . esc_html__('triggers', 'duplicator') . '</a>';
printf(__('This database makes use of %1$s which can manually be imported at install time. Instructions and SQL statement queries will be '
. 'provided at install time for users to execute. No actions need to be performed at this time, this message is simply a notice.', 'duplicator'), $lnk);
?>
</span>
</div>
</div>
</script>
<div id="triggers-result"></div>
</div>
</div>
<?php } ?>
<?php
$procedures = $GLOBALS['wpdb']->get_col("SHOW PROCEDURE STATUS WHERE `Db` = '{$GLOBALS['wpdb']->dbname}'", 1);
$functions = $GLOBALS['wpdb']->get_col("SHOW FUNCTION STATUS WHERE `Db` = '{$GLOBALS['wpdb']->dbname}'", 1);
if (count($procedures) || count($functions)) { ?>
<div id="showcreateprocfunc-block" class="scan-item">
<div class='title' onclick="Duplicator.Pack.toggleScanItem(this);">
<div class="text"><i class="fa fa-caret-right"></i> <?php esc_html_e('Object Access', 'duplicator');?></div>
<div id="data-arc-status-showcreateprocfunc"></div>
</div>
<div class="info">
<script id="hb-showcreateprocfunc-result" type="text/x-handlebars-template">
<div class="container">
<div class="data">
{{#if ARC.Status.showCreateProcFunc}}
<?php esc_html_e("The database user for this WordPress site has sufficient permissions to write stored procedures and functions to the sql file of the archive. [The command SHOW CREATE FUNCTION will work.]", 'duplicator'); ?>
{{else}}
<span style="color: red;">
<?php
esc_html_e(
"The database user for this WordPress site does NOT sufficient permissions to write stored procedures or" .
" functions to the sql file of the archive. Stored procedures will not be added to the sql file.",
'duplicator'
);
?>
</span>
{{/if}}
</div>
</div>
</script>
<div id="showcreateprocfunc-package-result"></div>
</div>
</div>
<?php } ?>
<!-- ============
TOTAL SIZE -->
<div class="data-ll-section scan-header" style="display:none">
<i class="far fa-file-archive"></i>
<?php esc_html_e("Total Size", 'duplicator'); ?>
<div class="scan-header-details">
<div id="data-ll-totalsize"></div>
<i class="fa fa-question-circle data-size-help"
data-tooltip-title="<?php esc_attr_e("Total Size:", 'duplicator'); ?>"
data-tooltip="<?php esc_attr_e('The total size of the site (files plus database).', 'duplicator'); ?>"></i>
<div class="dup-data-size-uncompressed"><?php esc_html_e("uncompressed"); ?></div>
</div>
</div>
<div class="data-ll-section scan-item" style="display: none">
<div style="padding: 7px; background-color:#F3B2B7; font-weight: bold ">
<?php
printf(__('The build can\'t continue because the total size of files and the database exceeds the %s limit that can be processed when creating a DupArchive package. ', 'duplicator'), $duparchive_max_limit);
?>
<a href="javascript:void(0)" onclick="jQuery('#data-ll-status-recommendations').slideToggle('slow');"><?php esc_html_e('Click for recommendations.', 'duplicator'); ?></a>
</div>
<div class="info" id="data-ll-status-recommendations">
<?php
echo '<b>';
$lnk = '<a href="admin.php?page=duplicator-settings&tab=package" target="_blank">' . esc_html__('Archive Engine', 'duplicator') . '</a>';
printf(esc_html__("The %s is set to create packages in the 'DupArchive' format. This custom format is used to overcome budget host constraints."
. " With DupArchive, Duplicator is restricted to processing sites up to %s. To process larger sites, consider these recommendations. ", 'duplicator'), $lnk, $duparchive_max_limit, $duparchive_max_limit);
echo '</b>';
echo '<br/><hr size="1" />';
echo '<b>' . esc_html__('RECOMMENDATIONS:', 'duplicator') . '</b><br/>';
echo '<div style="padding:5px">';
$new1_package_url = admin_url('admin.php?page=duplicator&tab=new1');
$new1_package_nonce_url = wp_nonce_url($new1_package_url, 'new1-package');
$lnk = '<a href="' . $new1_package_nonce_url . '">' . esc_html__('Step 1', 'duplicator') . '</a>';
printf(__('- Add data filters to get the package size under %s: ', 'duplicator'), $duparchive_max_limit);
echo '<div style="padding:0 0 0 20px">';
_e("- In the 'Size Checks' section above consider adding filters (if notice is shown).", 'duplicator');
echo '<br/>';
printf(__("- In %s consider adding file/directory or database table filters.", 'duplicator'), $lnk);
echo '</div>';
echo '<br/>';
$lnk = '<a href="https://snapcreek.com/duplicator/docs/quick-start' .
'?utm_source=duplicator_free&utm_medium=wordpress_plugin&utm_content=da_size_two_part&utm_campaign=duplicator_pro#quick-060-q" target="_blank">' .
esc_html__('covered here.', 'duplicator') .
'</a>';
printf(__("- Perform a two part install %s", 'duplicator'), $lnk);
echo '<br/><br/>';
$lnk = '<a href="admin.php?page=duplicator-settings&tab=package" target="_blank">' . esc_html__('ZipArchive Engine', 'duplicator') . '</a>';
printf(__("- Switch to the %s which requires a capable hosting provider (VPS recommended).", 'duplicator'), $lnk);
echo '<br/><br/>';
$lnk = '<a href="' . esc_url(Upsell::getCampaignUrl('package-build-scan', 'Package to big Get Pro')) . '" target="_blank">' . esc_html__('Duplicator Pro', 'duplicator') . '</a>';
printf(__("- Consider upgrading to %s for unlimited large site support.", 'duplicator'), $lnk);
echo '</div>';
?>
</div>
</div>
<?php
echo '<div class="dup-pro-support"> ';
esc_html_e('Migrate large, multi-gig sites with', 'duplicator');
echo ' <i><a href="' . esc_url(Upsell::getCampaignUrl('package-build-scan', 'Multi Gig Package Get Pro')) . '" target="_blank">' . esc_html__('Duplicator Pro', 'duplicator') . '!</a></i>';
echo '</div>';
?>
</div>
<br/><br/>
<!-- ==========================================
DIALOGS:
========================================== -->
<?php
$alert1 = new DUP_UI_Dialog();
$alert1->height = 600;
$alert1->width = 600;
$alert1->title = __('Scan Details', 'duplicator');
$alert1->message = "<div id='arc-details-dlg'></div>";
$alert1->initAlert();
$alert2 = new DUP_UI_Dialog();
$alert2->height = 450;
$alert2->width = 650;
$alert2->title = __('Copy Quick Filter Paths', 'duplicator');
$alert2->message = "<div id='arc-paths-dlg'></div>";
$alert2->initAlert();
?>
<!-- =======================
DIALOG: Scan Results -->
<div id="dup-archive-details" style="display:none">
<!-- PACKAGE -->
<h2><i class="fa fa-archive fa-sm"></i> <?php esc_html_e('Package', 'duplicator');?></h2>
<b><?php esc_html_e('Name', 'duplicator');?>:</b> <?php echo esc_html($Package->Name); ?><br/>
<b><?php esc_html_e('Notes', 'duplicator');?>:</b> <?php echo esc_html($Package->Notes); ?> <br/>
<b><?php esc_html_e('Archive Engine', 'duplicator');?>:</b> <a href="admin.php?page=duplicator-settings&tab=package" target="_blank"><?php echo esc_html($archive_type_label); ?></a>
<br/><br/>
<!-- DATABASE -->
<h2><i class="fas fa-database fa-sm"></i> <?php esc_html_e('Database', 'duplicator');?></h2>
<table id="db-area">
<tr><td><b><?php esc_html_e('Name:', 'duplicator');?></b></td><td><?php echo DB_NAME; ?> </td></tr>
<tr><td><b><?php esc_html_e('Host:', 'duplicator');?></b></td><td><?php echo DB_HOST; ?> </td></tr>
<tr>
<td style="vertical-align: top"><b><?php esc_html_e('Build Mode:', 'duplicator');?></b></td>
<td style="line-height:18px">
<a href="?page=duplicator-settings&tab=package" target="_blank"><?php echo esc_html($dbbuild_mode); ?></a>
<?php if ($mysqlcompat_on) :?>
<br/>
<small style="font-style:italic; color:maroon">
<i class="fa fa-exclamation-circle"></i> <?php esc_html_e('MySQL Compatibility Mode Enabled', 'duplicator'); ?>
<a href="https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html#option_mysqldump_compatible" target="_blank">[<?php esc_html_e('details', 'duplicator'); ?>]</a>
</small>
<?php endif;?>
</td>
</tr>
</table><br/>
<!-- FILE FILTERS -->
<h2 style="border: none">
<i class="fa fa-filter fa-sm"></i> <?php esc_html_e('File Filters', 'duplicator');?>:
<small><?php echo ($Package->Archive->FilterOn) ? __('Enabled', 'duplicator') : __('Disabled', 'duplicator') ;?></small>
</h2>
<div class="filter-area">
<b><i class="fa fa-folder-open"></i> <?php echo duplicator_get_abs_path();?></b>
<script id="hb-filter-file-list" type="text/x-handlebars-template">
<div class="file-info">
<b>[<?php esc_html_e('Directories', 'duplicator'); ?>]</b>
<div class="file-info">
{{#if ARC.FilterInfo.Dirs.Instance}}
{{#each ARC.FilterInfo.Dirs.Instance as |dir|}}
{{stripWPRoot dir}}/<br/>
{{/each}}
{{else}}
<?php _e('No custom directory filters set.', 'duplicator');?>
{{/if}}
</div>
<b>[<?php esc_html_e('Extensions', 'duplicator');?>]</b><br/>
<div class="file-info">
<?php
if (strlen($Package->Archive->FilterExts)) {
echo esc_html($Package->Archive->FilterExts);
} else {
_e('No file extension filters have been set.', 'duplicator');
}
?>
</div>
<b>[<?php esc_html_e('Files', 'duplicator'); ?>]</b>
<div class="file-info">
{{#if ARC.FilterInfo.Files.Instance}}
{{#each ARC.FilterInfo.Files.Instance as |file|}}
{{stripWPRoot file}}<br/>
{{/each}}
{{else}}
<?php _e('No custom file filters set.', 'duplicator');?>
{{/if}}
</div>
<b>[<?php esc_html_e('Auto Directory Filters', 'duplicator'); ?>]</b>
<div class="file-info">
{{#each ARC.FilterInfo.Dirs.Core as |dir|}}
{{stripWPRoot dir}}/<br/>
{{/each}}
<br/>
<b>[<?php esc_html_e('Auto File Filters', 'duplicator'); ?>]</b><br/>
{{#each ARC.FilterInfo.Files.Global as |file|}}
{{stripWPRoot file}}<br/>
{{/each}}
</div>
</div>
</script>
<div class="hb-filter-file-list-result"></div>
</div>
<small>
<?php esc_html_e('Path filters will be skipped during the archive process when enabled.', 'duplicator'); ?>
<a href="<?php echo wp_nonce_url(DUPLICATOR_SITE_URL . '/wp-admin/admin-ajax.php?action=duplicator_package_scan', 'duplicator_package_scan', 'nonce'); ?>" target="dup_report">
<?php esc_html_e('[view json result report]', 'duplicator');?>
</a>
<br/>
<?php esc_html_e('Auto filters are applied to prevent archiving other backup sets.', 'duplicator'); ?>
</small><br/>
</div>
<!-- =======================
DIALOG: PATHS COPY & PASTE -->
<div id="dup-archive-paths" style="display:none">
<b><i class="fa fa-folder"></i> <?php esc_html_e('Directories', 'duplicator');?></b>
<div class="copy-button">
<button type="button" class="button-small" onclick="Duplicator.Pack.copyText(this, '#arc-paths-dlg textarea.path-dirs')">
<i class="fa far fa-clipboard"></i> <?php esc_html_e('Click to Copy', 'duplicator');?>
</button>
</div>
<textarea class="path-dirs"></textarea>
<br/><br/>
<b><i class="far fa-copy fa-sm"></i> <?php esc_html_e('Files', 'duplicator');?></b>
<div class="copy-button">
<button type="button" class="button-small" onclick="Duplicator.Pack.copyText(this, '#arc-paths-dlg textarea.path-files')">
<i class="fa far fa-clipboard"></i> <?php esc_html_e('Click to Copy', 'duplicator');?>
</button>
</div>
<textarea class="path-files"></textarea>
<br/>
<small><?php esc_html_e('Copy the paths above and apply them as needed on Step 1 > Archive > Files section.', 'duplicator');?></small>
</div>
<script>
jQuery(document).ready(function($)
{
Handlebars.registerHelper('stripWPRoot', function(path) {
return path.replace(<?php echo str_replace('\\/', '/', json_encode(duplicator_get_abs_path())); ?>, '');
});
//Uncheck file names if directory is checked
Duplicator.Pack.filesOff = function (dir)
{
var $checks = $(dir).parent('div.directory').find('div.files input[type="checkbox"]');
$(dir).is(':checked')
? $.each($checks, function() {$(this).attr({disabled : true, checked : false, title : '<?php esc_html_e('Directory applied filter set.', 'duplicator');?>'});})
: $.each($checks, function() {$(this).removeAttr('disabled checked title');});
$('div.apply-warn').show(300);
}
//Opens a dialog to show scan details
Duplicator.Pack.showDetailsDlg = function ()
{
$('#arc-details-dlg').html($('#dup-archive-details').html());
<?php $alert1->showAlert(); ?>
Duplicator.UI.loadQtip();
return;
}
//Opens a dialog to show scan details
Duplicator.Pack.showPathsDlg = function (type)
{
var id = (type == 'large') ? '#hb-files-large-result' : '#hb-files-utf8-result'
var dirFilters = [];
var fileFilters = [];
$(id + " input[name='dir_paths[]']:checked").each(function() {dirFilters.push($(this).val());});
$(id + " input[name='file_paths[]']:checked").each(function() {fileFilters.push($(this).val());});
var $dirs = $('#dup-archive-paths textarea.path-dirs');
var $files = $('#dup-archive-paths textarea.path-files');
(dirFilters.length > 0)
? $dirs.text(dirFilters.join(";\n"))
: $dirs.text("<?php esc_html_e('No directories have been selected!', 'duplicator');?>");
(fileFilters.length > 0)
? $files.text(fileFilters.join(";\n"))
: $files.text("<?php esc_html_e('No files have been selected!', 'duplicator');?>");
$('#arc-paths-dlg').html($('#dup-archive-paths').html());
<?php $alert2->showAlert(); ?>
return;
}
//Toggles a directory path to show files
Duplicator.Pack.toggleDirPath = function(item)
{
var $dir = $(item).parents('div.directory');
var $files = $dir.find('div.files');
var $arrow = $dir.find('i.dup-nav');
if ($files.is(":hidden")) {
$arrow.addClass('fa-caret-down').removeClass('fa-caret-right');
$files.show();
} else {
$arrow.addClass('fa-caret-right').removeClass('fa-caret-down');
$files.hide(250);
}
}
//Toggles a directory path to show files
Duplicator.Pack.toggleAllDirPath = function(item, toggle)
{
var $dirs = $(item).parents('div.container').find('div.data div.directory');
(toggle == 'hide')
? $.each($dirs, function() {$(this).find('div.files').show(); $(this).find('i.dup-nav').trigger('click');})
: $.each($dirs, function() {$(this).find('div.files').hide(); $(this).find('i.dup-nav').trigger('click');});
}
Duplicator.Pack.copyText = function(btn, query)
{
$(query).select();
try {
document.execCommand('copy');
$(btn).css({color: '#fff', backgroundColor: 'green'});
$(btn).text("<?php esc_html_e('Copied to Clipboard!', 'duplicator');?>");
} catch(err) {
alert("<?php esc_html_e('Manual copy of selected text required on this browser.', 'duplicator');?>")
}
}
Duplicator.Pack.applyFilters = function(btn, type)
{
var $btn = $(btn);
$btn.html('<i class="fas fa-circle-notch fa-spin"></i> <?php esc_html_e('Initializing Please Wait...', 'duplicator');?>');
$btn.attr('disabled', 'true');
//var id = (type == 'large') ? '#hb-files-large-result' : '#hb-files-utf8-result'
var id = '';
switch(type){
case 'large':
id = '#hb-files-large-result';
break;
case 'utf8':
id = '#hb-files-utf8-result';
break;
case 'addon':
id = '#hb-addon-sites-result';
break;
}
var dirFilters = [];
var fileFilters = [];
$(id + " input[name='dir_paths[]']:checked").each(function() {dirFilters.push($(this).val());});
$(id + " input[name='file_paths[]']:checked").each(function() {fileFilters.push($(this).val());});
var data = {
action: 'DUP_CTRL_Package_addQuickFilters',
nonce: '<?php echo wp_create_nonce('DUP_CTRL_Package_addQuickFilters'); ?>',
dir_paths : dirFilters.join(";"),
file_paths : fileFilters.join(";"),
};
$.ajax({
type: "POST",
cache: false,
dataType: "text",
url: ajaxurl,
timeout: 100000,
data: data,
complete: function() { },
success: function(respData) {
try {
var data = Duplicator.parseJSON(respData);
} catch(err) {
console.error(err);
console.error('JSON parse failed for response data: ' + respData);
console.log(data);
alert("<?php esc_html_e('Error applying filters. Please go back to Step 1 to add filter manually!', 'duplicator');?>");
return false;
}
Duplicator.Pack.rescan();
},
error: function(data) {
console.log(data);
alert("<?php esc_html_e('Error applying filters. Please go back to Step 1 to add filter manually!', 'duplicator');?>");
}
});
}
Duplicator.Pack.initArchiveFilesData = function(data)
{
//TOTAL SIZE
//var sizeChecks = data.ARC.Status.Size == 'Warn' || data.ARC.Status.Big == 'Warn' ? 'Warn' : 'Good';
$('#data-arc-status-size').html(Duplicator.Pack.setScanStatus(data.ARC.Status.Size));
$('#data-arc-status-names').html(Duplicator.Pack.setScanStatus(data.ARC.Status.Names));
$('#data-arc-status-unreadablefiles').html(Duplicator.Pack.setScanStatus(data.ARC.Status.UnreadableItems));
$('#data-arc-status-triggers').html(Duplicator.Pack.setScanStatus(data.DB.Status.Triggers));
$('#data-arc-status-migratepackage').html(Duplicator.Pack.setScanStatus(data.ARC.Status.MigratePackage));
+ $('#data-arc-status-showcreateprocfunc').html(Duplicator.Pack.setScanStatus(data.ARC.Status.showCreateProcFuncStatus));
$('#data-arc-size1').text(data.ARC.Size || errMsg);
$('#data-arc-size2').text(data.ARC.Size || errMsg);
$('#data-arc-files').text(data.ARC.FileCount || errMsg);
$('#data-arc-dirs').text(data.ARC.DirCount || errMsg);
//LARGE FILES
if ($('#hb-files-large').length > 0) {
var template = $('#hb-files-large').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('#hb-files-large-result').html(html);
}
//ADDON SITES
if ($('#hb-addon-sites').length > 0) {
var template = $('#hb-addon-sites').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('#hb-addon-sites-result').html(html);
}
//NAME CHECKS
if ($('#hb-files-utf8').length > 0) {
var template = $('#hb-files-utf8').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('#hb-files-utf8-result').html(html);
}
//NAME CHECKS
if ($('#unreadable-files').length > 0) {
var template = $('#unreadable-files').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('#unreadable-files-result').html(html);
}
//SCANNER DETAILS: Dirs
if ($('#hb-filter-file-list').length > 0) {
var template = $('#hb-filter-file-list').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('div.hb-filter-file-list-result').html(html);
}
//MIGRATE PACKAGE
if ($("#hb-migrate-package-result").length) {
var template = $('#hb-migrate-package-result').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('#migrate-package-result').html(html);
}
//SHOW CREATE
if ($("#hb-showcreateprocfunc-result").length) {
var template = $('#hb-showcreateprocfunc-result').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('#showcreateprocfunc-package-result').html(html);
}
//TRIGGERS
if ($("#hb-triggers-result").length) {
var template = $('#hb-triggers-result').html();
var templateScript = Handlebars.compile(template);
var html = templateScript(data);
$('#triggers-result').html(html);
}
Duplicator.UI.loadQtip();
}
Duplicator.Pack.initArchiveDBData = function(data)
{
var errMsg = "unable to read";
var color;
var html = "";
var DB_TotalSize = 'Good';
var DB_TableRowMax = <?php echo DUPLICATOR_SCAN_DB_TBL_ROWS; ?>;
var DB_TableSizeMax = <?php echo DUPLICATOR_SCAN_DB_TBL_SIZE; ?>;
if (data.DB.Status.Success)
{
DB_TotalSize = data.DB.Status.DB_Rows == 'Warn' || data.DB.Status.DB_Size == 'Warn' ? 'Warn' : 'Good';
$('#data-db-status-size').html(Duplicator.Pack.setScanStatus(DB_TotalSize));
$('#data-db-size1').text(data.DB.EasySize || errMsg);
$('#data-db-size2').text(data.DB.EasySize || errMsg);
$('#data-db-rows').text(data.DB.Rows || errMsg);
$('#data-db-tablecount').text(data.DB.TableCount || errMsg);
//Table Details
if (data.DB.TableList == undefined || data.DB.TableList.length == 0) {
html = '<?php esc_html_e("Unable to report on any tables", 'duplicator') ?>';
} else {
$.each(data.DB.TableList, function(i) {
html += '<b>' + i + '</b><br/>';
html += '<table><tr>';
$.each(data.DB.TableList[i], function(key,val) {
switch(key) {
case 'Case':
color = (val == 1) ? 'red' : 'black';
html += '<td style="color:' + color + '">Uppercase: ' + val + '</td>';
break;
case 'Rows':
color = (val > DB_TableRowMax) ? 'red' : 'black';
html += '<td style="color:' + color + '">Rows: ' + val + '</td>';
break;
case 'USize':
color = (parseInt(val) > DB_TableSizeMax) ? 'red' : 'black';
html += '<td style="color:' + color + '">Size: ' + data.DB.TableList[i]['Size'] + '</td>';
break;
}
});
html += '</tr></table>';
});
}
$('#data-db-tablelist').html(html);
} else {
html = '<?php esc_html_e("Unable to report on database stats", 'duplicator') ?>';
$('#dup-scan-db').html(html);
}
}
Duplicator.Pack.initLiteLimitData = function(data)
{
if(data.LL.Status.TotalSize == 'Fail') {
$('.data-ll-section').show();
$('#dup-build-button').hide();
$('#dup-scan-warning-continue').hide();
//$('#data-ll-status-totalsize').html(Duplicator.Pack.setScanStatus(data.LL.Status.TotalSize));
$('#data-ll-totalsize').text(data.LL.TotalSize || errMsg);
$('.dup-pro-support').hide();
} else {
// $('#dup-scan-warning-continue').show();
$('#dup-build-button').show();
// $('#dup-build-button').prop("disabled",true);
$('.data-ll-section').hide();
}
}
<?php
if (isset($_GET['retry']) && $_GET['retry'] == '1') {
echo "$('#scan-itme-file-size').show(300)";
}
?>
// alert('before binding ' + $("#form-duplicator").length);
$("#form-duplicator").on('change', "#hb-files-large-result input[type='checkbox'], #hb-files-utf8-result input[type='checkbox'], #hb-addon-sites-result input[type='checkbox']", function() {
if ($("#hb-files-large-result input[type='checkbox']:checked").length) {
var large_disabled_prop = false;
} else {
var large_disabled_prop = true;
}
$("#hb-files-large-result .duplicator-quick-filter-btn").prop("disabled", large_disabled_prop);
if ($("#hb-files-utf8-result input[type='checkbox']:checked").length) {
var utf8_disabled_prop = false;
} else {
var utf8_disabled_prop = true;
}
$("#hb-files-utf8-result .duplicator-quick-filter-btn").prop("disabled", utf8_disabled_prop);
if ($("#hb-addon-sites-result input[type='checkbox']:checked").length) {
var addon_disabled_prop = false;
} else {
var addon_disabled_prop = true;
}
$("#hb-addon-sites-result .duplicator-quick-filter-btn").prop("disabled", addon_disabled_prop);
});
});
</script>
|