| Server IP : 194.61.116.167 / Your IP : 216.73.217.84 Web Server : Apache/2 System : Linux nimbus2000.evosiber.com 5.14.0-503.11.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 12 09:26:13 EST 2024 x86_64 User : evoplastik ( 1130) PHP Version : 8.1.34 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/evoplastik/public_html/wp-content/plugins/wp-optimize/templates/database/ |
Upload File : |
<?php
if (!defined('WPO_VERSION')) die('No direct access allowed');
?>
<div class="wpo_shade hidden">
<div class="wpo_shade_inner">
<span class="dashicons dashicons-update-alt wpo-rotate"></span>
<h4><?php esc_html_e('Loading data...', 'wp-optimize'); ?></h4>
</div>
</div>
<div class="wpo_section wpo_group">
<?php
if (!empty($optimization_results)) {
echo '<div id="message" class="updated below-h2"><strong>';
foreach ($optimization_results as $optimization_result) {
if (!empty($optimization_result->output)) {
foreach ($optimization_result->output as $line) {
echo wp_kses_post($line)."<br>";
}
}
}
echo '</strong></div>';
}
?>
<?php WP_Optimize()->include_template('database/status-box-contents.php', false, $status_data); ?>
<?php
$message = __('Warning: This operation is permanent.', 'wp-optimize');
$message .= ' ';
$message .= __('Continue?', 'wp-optimize');
?>
<form onsubmit="return confirm('<?php echo esc_js($message); ?>')" action="#" method="post" enctype="multipart/form-data" name="optimize_form" id="optimize_form">
<?php wp_nonce_field('wpo_optimization'); ?>
<h3><?php esc_html_e('Optimizations', 'wp-optimize'); ?></h3>
<div class="wpo-run-optimizations__container">
<?php $button_caption = apply_filters('wpo_run_button_caption', __('Run all selected optimizations', 'wp-optimize')); ?>
<input class="button button-primary button-large" type="submit" id="wp-optimize" name="wp-optimize" value="<?php echo esc_attr($button_caption); ?>"><?php WP_Optimize()->include_template('take-a-backup.php', false, array('checkbox_name' => 'enable-auto-backup')); ?>
</div>
<?php do_action('wpo_additional_options'); ?>
<?php
if ($load_data) {
WP_Optimize()->include_template('database/optimizations-table.php', false, $optimizations_table_data);
} else {
?>
<div class="wp-optimize-optimizations-table-placeholder">
</div>
<?php } ?>
<p class="wp-optimize-sensitive-tables-warning">
<span style="color: #E07575;">
<span class="dashicons dashicons-warning"></span>
<?php esc_html_e('Warning:', 'wp-optimize'); ?>
</span>
<?php
$message = __('Items marked with this icon perform more intensive database operations.', 'wp-optimize');
$message .= ' ';
$message .= __('In very rare cases, if your database server happened to crash or be forcibly powered down at the same time as an optimization operation was running, data might be corrupted.', 'wp-optimize');
$message .= ' ';
$message .= __('You may wish to run a backup before optimizing.', 'wp-optimize');
echo esc_html($message);
?>
</p>
</form>
</div>