Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
save_bvnghean.vn
/
wp-content
/
plugins
/
backupbuddy
/
destinations
/
live
:
_manage.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /* BackupBuddy Stash Live Main Page * * @author Dustin Bolton * @since 7.0 * */ pb_backupbuddy::load_style( 'backupProcess2.css' ); pb_backupbuddy::load_style( 'backupbuddy_live.css' ); pb_backupbuddy::load_script( 'underscore' ); if ( is_network_admin() ) { $admin_url = network_admin_url( 'admin.php' ); } else { $admin_url = admin_url( 'admin.php' ); } pb_backupbuddy::alert( '{error placeholder}', false, $error_code = '', $rel_tag = 'stash_live_error_alert' ); ?> <script> var loadingIndicator = ''; jQuery(document).ready(function() { loadingIndicator = jQuery( '.pb_backupbuddy_loading' ); }); function backupbuddy_resizeIframe(obj) { newHeight = obj.contentWindow.document.body.scrollHeight; obj.style.height = newHeight + 'px'; } </script> <?php // Incoming vars: $destination, $destination_id if ( isset( $destination['disabled'] ) && ( '1' == $destination['disabled'] ) ) { die( __( 'This destination is currently disabled based on its settings. Re-enable it under its Advanced Settings.', 'it-l10n-backupbuddy' ) ); } wp_enqueue_script( 'thickbox' ); wp_print_scripts( 'thickbox' ); wp_print_styles( 'thickbox' ); require_once( pb_backupbuddy::plugin_path() . '/destinations/live/live_periodic.php' ); $state = backupbuddy_live_periodic::get_stats(); include( '_stats.php' ); // Recalculate stats. Populates $stats var. // First backup in progress alert. if ( 0 == $state['stats']['first_completion'] ) { $first_backup_message = '<h3 id="backupbuddy_live_first_completion_pending">' . __( 'Your first BackupBuddy Stash Live Backup has started!', 'it-l10n-backupbuddy' ) . '</h3>'; $first_backup_message .= '<div class="col col-1-3"><span class="dashicons dashicons-clock"></span>'; $first_backup_message .= sprintf( '<p><strong>%s</strong> %s</p>', __( 'This first backup may take a while,', 'it-l10n-backupbuddy' ), sprintf( '%1$s <a href="%2$s" target="_blank">%3$s</a>', __( 'depending on your site size and hosting. Feel free to take a nap, go for a walk, or', 'it-l10n-backupbuddy' ), 'https://www.youtube.com/watch?v=BCHuH6hnSyQ&index=5&list=PL7F27C55A2081E63E"', __( 'watch some badger videos.', 'it-l10n-backupbuddy' ), __( 'You may leae this page though it will go faster if you stay.', 'it-l10n-backupbuddy' ) ) ); $first_backup_message .= '</div>'; $first_backup_message .= '<div class="col col-1-3"><span class="dashicons dashicons-email-alt"></span>'; $first_backup_message .= sprintf( '<p><strong>%s</strong> %s</p>', __('Keep an eye on your inbox.', 'it-l10n-backupbuddy' ), __( 'You\'ll receive an email notification once your first Stash Live backup completes. You can configure your Stash Live email settings from the Settings link above.', 'it-l10n-backupbuddy' ) ); $first_backup_message .= '</div>'; $first_backup_message .= '<div class="col col-1-3"><span class="dashicons dashicons-sos"></span>'; $first_backup_message .= sprintf( '<p><strong>%s</strong> %s</p>', __('Have questions or need help?', 'it-l10n-backupbuddy' ), sprintf( __('Check out the <a href="%1$s" target="_blank">%2$s</a> and <a href="%3$s" target="_blank">%4$s</a>.', 'it-l10n-backupbuddy' ), 'https://ithemes.com/stash-live/faqs', __( 'Stash Live FAQs', 'it-l10n-backupbuddy' ), 'https://ithemes.com/tutorial/category/stash-live/', __('tutorial video library', 'it-l10n-backupbuddy' ) ) ); $first_backup_message .= '</div>'; pb_backupbuddy::disalert( 'live_first_completion', $first_backup_message ); } // First backup complete alert. Not output if older than 48 hours. Output but hidden if =0. Output and visible is non-zero > 48hrs. if ( 0 == $state['stats']['first_completion'] ) { // Output but hidden if not finished. $completion_css = 'display: none;'; } elseif ( ( time() - $state['stats']['first_completion'] ) < 60*60*48 ) { // < 48hrs. $completion_css = ''; } if ( isset( $completion_css ) ) { pb_backupbuddy::disalert( 'live_first_completion_done', '<h3>' . __( 'Your first Live Backup is complete!', 'it-l10n-backupbuddy' ) . '</h3><p class="description" style="max-width: 700px; display: inline-block;">' . __( 'Your first BackupBuddy Stash Live backup process has completed and your first Snapshot will arrive in your Stash storage shortly. We\'ll automatically backup any changes you make to your site from here on out and regularly create Snapshots in time of your data. Your site is well on its way to a secure future in the safe hands of BackupBuddy Stash Live.', 'it-l10n-backupbuddy' ) . '</p>', $error = false, $completion_css ); } // RUN ACTIONS FROM BUTTON PRESS. if ( '' != pb_backupbuddy::_GET( 'live_action' ) ) { pb_backupbuddy::verify_nonce(); $action = pb_backupbuddy::_GET( 'live_action' ); if ( 'clear_log' == $action ) { $sumLogFile = backupbuddy_core::getLogDirectory() . 'status-live_periodic_' . pb_backupbuddy::$options['log_serial'] . '.txt'; @unlink( $sumLogFile ); if ( file_exists( $sumLogFile ) ) { pb_backupbuddy::alert( 'Error #893489322: Unable to clear log file `' . $sumLogFile . '`. Check permissions or manually delete.' ); } else { pb_backupbuddy::alert( 'Log file cleared.' ); } } elseif ( 'create_snapshot' == $action ) { // < 100% backed up _OR_ ( we are on a step other than daily_init and the last_activity is more recent than the php runtime ) /* if ( '' != pb_backupbuddy::_GET( 'get_snapshot_status' ) ) { // Check existing snapshot status. $response = array( 'success' => false, 'snapshot' => pb_backupbuddy::_GET( 'get_snapshot_status' ), 'note' => 'This is a dummy array populated in _manage.php for triggering status check manually.', ); } */ if ( true === backupbuddy_api::runLiveSnapshot() ) { pb_backupbuddy::alert( '<h3>' . __( 'Verifying everything is up to date before Snapshot', 'it-l10n-backupbuddy' ) . '</h3><p class="description" style="max-width: 700px; display: inline-block;">' . __( 'Please wait while we verify your backup is completely up to date before we create the Snapshot. This may take a few minutes...', 'it-l10n-backupbuddy' ) . '</p>', false, '', 'backupbuddy_live_snapshot_verify_uptodate' ); require( '_manual_snapshot.php' ); } } elseif ( 'resume_periodic_step' == $action ) { pb_backupbuddy::alert( 'Launching BackupBuddy Stash Live Periodic Process to run now where it left off.' ); backupbuddy_live_periodic::run_periodic_process(); } elseif ( 'uncache_credentials' == $action ) { require_once( pb_backupbuddy::plugin_path() . '/destinations/live/init.php' ); delete_transient( pb_backupbuddy_destination_live::LIVE_ACTION_TRANSIENT_NAME ); pb_backupbuddy::alert( 'Deleted cached Live credentials.' ); } elseif ( 'restart_periodic' == $action ) { pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_periodic'] = '0'; $destination = pb_backupbuddy::$options['remote_destinations'][$destination_id]; // Update local var. pb_backupbuddy::save(); backupbuddy_live::queue_step( 'daily_init', $args = array() ); pb_backupbuddy::alert( __( 'Enabled Live Files Backup and Restarted Periodic Process (only running if between steps or timed out).', 'it-l10n-backupbuddy' ) ); } elseif ( 'restart_periodic_force' == $action ) { pb_backupbuddy::$options['remote_destinations'][$destination_id]['pause_periodic'] = '0'; $destination = pb_backupbuddy::$options['remote_destinations'][$destination_id]; // Update local var. pb_backupbuddy::save(); backupbuddy_live::queue_step( 'daily_init', $args = array(), $skip_run_now = false, $force_run_now = true ); pb_backupbuddy::alert( __( 'Enabled Live Files Backup and Restarted Periodic Process (forced to run now).', 'it-l10n-backupbuddy' ) ); } elseif( 'restart_at_step' == $action ) { $step = pb_backupbuddy::_POST( 'live_step' ); pb_backupbuddy::alert( 'Reset Periodic Process to run at step `' . $step . '` (FORCED). This may take a few minutes for the current process to complete.' ); backupbuddy_live::queue_step( $step, $args = array(), $skip_run_now = false, $force_run_now = true ); } elseif ( 'view_files' == $action ) { require( '_viewfiles.php' ); echo '<br><hr><br><br>'; /*} elseif ( 'view_stash_files' == $action ) { require( '_viewstashfiles.php' ); echo '<br><hr><br><br>'; */ } elseif ( 'view_files_tables' == $action ) { require( '_viewfiles_tables.php' ); echo '<br><hr><br><br>'; } elseif ( 'view_tables' == $action ) { require( '_viewtables.php' ); echo '<br><hr><br><br>'; } elseif ( 'view_catalog_raw' == $action ) { echo '<h3>Local Catalog File Signatures (raw):</h3>'; $catalog = backupbuddy_live_periodic::get_catalog(); echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="20">' . print_r( $catalog, true ) . '</textarea>'; echo '<br><br><br>'; } elseif ( 'view_signatures_raw' == $action ) { echo '<h3>Local Catalog File Signatures (raw - contents and file count may fluctuate if periodic files process is not pasued):</h3>'; $catalog = backupbuddy_live_periodic::get_catalog(); echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="20">' . print_r( $catalog, true ) . '</textarea>'; echo '<br><br><br>'; } elseif ( 'troubleshooting' == $action ) { echo '<h3>Stash Live Troubleshooting:</h3>'; require( '_troubleshooting.php' ); backupbuddy_live_troubleshooting::run(); $results = backupbuddy_live_troubleshooting::get_raw_results(); $download_button = '<div style="text-align: center; margin: 15px;"> <button class="button button-primary" onClick="backupbuddy_save_textarea_as_file(\'#backupbuddy_live_troubleshooting_results\', \'stash_live_troubleshooting\' );" style="margin-left: auto; margin-right: auto; display: inherit; font-size: 0.9em;">Download Troubleshooting Log (.txt)</button> </div>'; echo $download_button; echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="30" id="backupbuddy_live_troubleshooting_results">' . print_r( $results, true ) . '</textarea>'; echo $download_button; echo '<br><br><br>'; } elseif ( 'last_snapshot_details' == $action ) { if ( '' == $state['stats']['last_remote_snapshot_id'] ) { pb_backupbuddy::alert( 'No Snapshot creations have been requested yet.' ); } else { $destination_settings = backupbuddy_live_periodic::get_destination_settings(); $additionalParams = array( 'snapshot' => $state['stats']['last_remote_snapshot_id'], ); echo '<h3>Last Snapshot Details</h3>'; echo '<b>Status as reported from server as of just now:</b><br>'; $response = pb_backupbuddy_destination_live::stashAPI( $destination_settings, 'live-snapshot-status', $additionalParams ); if ( ! is_array( $response ) ) { pb_backupbuddy::alert( 'Error #3497943: Unable to get Live snapshot status. Details: `' . $response . '`.' ); } else { echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="15">' . print_r( $response, true ) . '</textarea>'; echo '<br><br>'; } echo '<b>Server response to request to initiate ( ' . pb_backupbuddy::$format->date( pb_backupbuddy::$format->localize_time( $state['stats']['last_remote_snapshot_response_time'] ) ) . '; ' . pb_backupbuddy::$format->time_ago( $state['stats']['last_remote_snapshot_response_time'] ) . ' ago):</b><br>'; echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="15">' . print_r( $state['stats']['last_remote_snapshot_response'], true ) . '</textarea>'; echo '<br><br><br>'; } } elseif ( 'view_tables_raw' == $action ) { echo '<h3>Local Catalog Tables (raw):</h3>'; $tables = backupbuddy_live_periodic::get_tables(); echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="20">' . print_r( $tables, true ) . '</textarea>'; echo '<br><br><br>'; } elseif ( 'view_signatures' == $action ) { echo '<h3>Local Files Catalog (contents and file count may fluctuate if periodic files process is not pasued):</h3>'; $siteSize = 0; $catalog = backupbuddy_live_periodic::get_catalog(); $catalogTable = array(); foreach( $catalog as $filename => $signature ) { if ( 0 != $signature['b'] ) { $sent = $signature['b']; } else { $sent = __( 'Pending', 'it-l10n-backupbuddy' ); } if ( isset( $signature['d'] ) && ( true === $signature['d'] ) ) { $delete = __( 'Yes', 'it-l10n-backupbuddy' ); } else { $delete = __( 'No', 'it-l10n-backupbuddy' ); $siteSize += $signature['s']; // File not marked for deletion. } if ( '' == $signature['h'] ) { $hash = 'n/a'; } else { $hash = $signature['h']; } if ( 0 == $signature['m'] ) { $modified = '<span class="description">Pending...</span>'; } else { $modified = $signature['m']; } if ( 0 == $signature['v'] ) { $audited = '<span class="description">Pending...</span>'; } else { $audited = $signature['v']; } $catalogTable[ $filename ] = array( $filename, (string)$signature['s'], (string)$signature['a'], $modified, $sent, $audited, (string)$signature['t'], $delete, $hash, ); } unset( $catalog ); $catalogInfo = 'Total catalog site size: `' . pb_backupbuddy::$format->file_size( $siteSize ) . '`. Total files in catalog: `' . count( $catalogTable ) . '`. Catalog file size: `' . pb_backupbuddy::$format->file_size( filesize( backupbuddy_core::getLogDirectory() . 'live/catalog-' . pb_backupbuddy::$options['log_serial'] . '.txt' ) ) . '`.'; echo $catalogInfo; pb_backupbuddy::$ui->list_table( $catalogTable, // Array of cron items set in code section above. array( 'live_action' => pb_backupbuddy::page_url() . '#pb_backupbuddy_getting_started_tab_tools', 'columns' => array( __( 'Files', 'it-l10n-backupbuddy' ), __( 'Size', 'it-l10n-backupbuddy' ), __( 'Added', 'it-l10n-backupbuddy' ), __( 'Modified', 'it-l10n-backupbuddy' ), __( 'Sent', 'it-l10n-backupbuddy' ), __( 'Audited', 'it-l10n-backupbuddy' ), __( 'Send Tries', 'it-l10n-backupbuddy' ), __( 'Delete?', 'it-l10n-backupbuddy' ), __( 'Hash', 'it-l10n-backupbuddy' ), ), 'css' => 'width: 100%;', ) ); // end list_table. unset( $catalogTable ); echo $catalogInfo; echo '<br><br><br>'; } elseif ( 'reset_send_attempts' == $action ) { if ( false === backupbuddy_live_periodic::reset_send_attempts() ) { pb_backupbuddy::alert( 'Error attempting to reset send attempt counts. The catalog may be busy. Try again in a moment or see the Status Log for details.' ); } else { pb_backupbuddy::alert( 'Success resetting send attempt counts back to zero for all files and global recent send fail counter.' ); } } elseif ( 'reset_last_activity' == $action ) { pb_backupbuddy::alert( 'Reset last activity timestamp.' ); backupbuddy_live_periodic::reset_last_activity(); } elseif ( 'reset_file_audit_times' == $action ) { pb_backupbuddy::alert( 'Reset file audit timestamps.' ); backupbuddy_live_periodic::reset_file_audit_times(); } elseif ( 'reset_first_completion' == $action ) { pb_backupbuddy::alert( 'Reset first completion timestamp.' ); backupbuddy_live_periodic::reset_first_completion(); } elseif ( 'reset_last_remote_snapshot' == $action ) { pb_backupbuddy::alert( 'Reset last remote snapshot timestamp.' ); backupbuddy_live_periodic::reset_last_remote_snapshot(); } elseif ( 'view_state' == $action ) { echo '<h3>State Data:</h3>'; echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="20">' . print_r( $state, true ) . '</textarea>'; echo '<br><br><br>'; } elseif ( 'view_log' == $action ) { $sumLogFile = backupbuddy_core::getLogDirectory() . 'status-live_periodic_' . pb_backupbuddy::$options['log_serial'] . '.txt'; echo '<div style="padding: 4px;">'; echo '<b>Status Log</b> File size: ' . pb_backupbuddy::$format->file_size( @filesize( $sumLogFile ) ) . ' '; ?> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=clear_log' ); ?>" class="button button-secondary button-tertiary" style="margin-left: 11px; vertical-align: 1px;">Clear Status Log</a> </div> <script> jQuery(document).ready( function(){ jQuery('#backupbuddy_live_log' ).scrollTop( jQuery('#backupbuddy_live_log')[0].scrollHeight ); }); </script> <?php echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="20" id="backupbuddy_live_log">'; // Is Live Logging Enabled? $liveID = backupbuddy_live::getLiveID(); $logging_disabled = ( isset( pb_backupbuddy::$options['remote_destinations'][ $liveID ]['disable_logging'] ) && ( '1' == pb_backupbuddy::$options['remote_destinations'][ $liveID ][ 'disable_logging'] ) ); if ( ! file_exists( $sumLogFile ) ) { if ( $logging_disabled ) { echo __( 'Live Logging has been disabled in Stash Live → Settings → Advanced.', 'it-l10n-backupbuddy' ); } else { echo __( 'Nothing has been logged.', 'it-l10n-backupbuddy' ); } } else { $mtime = @filemtime( $sumLogFile ); $time_ago = pb_backupbuddy::$format->time_ago( $mtime ); $lines = file_get_contents( $sumLogFile ); if ( false === $lines ) { echo 'Error #49834839: Unable to read log file `' . $sumLogFile . '`.'; } else { $lines = explode( "\n", $lines ); foreach( (array)$lines as $rawline ) { $line = json_decode( $rawline, true ); //print_r( $line ); if ( is_array( $line ) ) { $u = ''; if ( isset( $line['u'] ) ) { // As off v4.2.15.6. TODO: Remove this in a couple of versions once old logs without this will have cycled out. $u = '.' . $line['u']; } echo pb_backupbuddy::$format->date( $line['time'], 'G:i:s' ) . $u . "\t\t"; echo $line['run'] . "sec\t"; echo $line['mem'] . "MB\t"; echo $line['event'] . "\t"; echo $line['data'] . "\n"; } else { echo $rawline . "\n"; } } } } ?></textarea> <?php if ( ! $logging_disabled ) { ?> <div style="display: inline-block; margin-left: 8px; margin-top: 5px;"><span class="description">Current Time: <?php echo pb_backupbuddy::$format->date( pb_backupbuddy::$format->localize_time( microtime( true ) ), 'G:i:s' ); ?>. Modified: <?php echo $time_ago; ?> ago.</span></div> <?php } ?> <br><br> <?php } elseif ( 'delete_catalog' == $action ) { $catalogFile = backupbuddy_core::getLogDirectory() . 'live/catalog-' . pb_backupbuddy::$options['log_serial'] . '.txt'; @unlink( $catalogFile ); sleep( 1 ); @unlink( $catalogFile ); sleep( 1 ); @unlink( $catalogFile ); if ( file_exists( $catalogFile ) ) { pb_backupbuddy::alert( 'Error #3927273: Unable to delete catalog file `' . $catalogFile . '`. Check permissions or manually delete.' ); } else { pb_backupbuddy::alert( 'Catalog deleted.' ); } $stateFile = backupbuddy_core::getLogDirectory() . 'live/state-' . pb_backupbuddy::$options['log_serial'] . '.txt'; @unlink( $stateFile ); sleep( 1 ); @unlink( $stateFile ); sleep( 1 ); @unlink( $stateFile ); if ( file_exists( $stateFile ) ) { pb_backupbuddy::alert( 'Error #434554: Unable to delete state file `' . $stateFile . '`. Check permissions or manually delete.' ); } else { pb_backupbuddy::alert( 'State file deleted.' ); } } elseif ( 'pause_periodic' == $action ) { backupbuddy_api::setLiveStatus( $pause_continuous = '', $pause_periodic = true ); $destination = pb_backupbuddy::$options['remote_destinations'][$destination_id]; // Update local var. pb_backupbuddy::disalert( '', __( 'Live File Backup paused. It may take a moment for current processes to finish.', 'it-l10n-backupbuddy' ) ); include( '_stats.php' ); // Recalculate stats. } elseif ( 'resume_periodic' == $action ) { $launchNowText = ' ' . __( 'Unpaused but not running now.', 'it-l10n-backupbuddy' ); $start_run = false; if ( '1' != pb_backupbuddy::_GET( 'skip_run_live_now' ) ) { $launchNowText = ''; $start_run = true; } backupbuddy_api::setLiveStatus( $pause_continuous = '', $pause_periodic = false, $start_run ); pb_backupbuddy::disalert( '', __( 'Live File Backup has resumed.', 'it-l10n-backupbuddy' ) . $launchNowText ); include( '_stats.php' ); // Recalculate stats. } elseif ( 'pause_continuous' == $action ) { backupbuddy_api::setLiveStatus( $pause_continuous = true, $pause_periodic = '' ); $destination = pb_backupbuddy::$options['remote_destinations'][$destination_id]; // Update local var. include( '_stats.php' ); // Recalculate stats. pb_backupbuddy::disalert( '', __( 'Live Database Backup paused.', 'it-l10n-backupbuddy' ) ); } elseif ( 'resume_continuous' == $action ) { backupbuddy_api::setLiveStatus( $pause_continuous = false, $pause_periodic = '' ); $destination = pb_backupbuddy::$options['remote_destinations'][$destination_id]; // Update local var. include( '_stats.php' ); // Recalculate stats. pb_backupbuddy::disalert( '', __( 'Live Database Backup resumed.', 'it-l10n-backupbuddy' ) ); } elseif ( 'view_raw_settings' == $action ) { echo '<h3>Raw Settings:</h3>'; echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="20">' . print_r( pb_backupbuddy::$options['remote_destinations'][$destination_id], true ) . '</textarea>'; echo '<br><br><br>'; } elseif ( 'view_stats' == $action ) { echo '<h3>Raw Stats:</h3>'; echo '<textarea readonly="readonly" style="width: 100%;" wrap="off" cols="65" rows="20">' . print_r( $stats, true ) . '</textarea>'; echo '<br><br><br>'; } } // end if action. // Backup types' Status. $database_status = '<span class="backpbuddy-live-stats-enabled">' .__( 'Enabled', 'it-l10n-backupbuddy' ) . '</span>'; $database_status_row = ''; if ( '1' == $destination['pause_continuous'] ) { $database_status = '<span class="backpbuddy-live-stats-paused">' . __( 'Paused', 'it-l10n-backupbuddy' ) . '</span>'; $database_status_row = 'backupbuddy-live-stats-paused-row'; } $files_status = '<span class="backpbuddy-live-stats-enabled">' . __( 'Enabled', 'it-l10n-backupbuddy' ) . '</span>'; $files_status_row = ''; if ( '1' == $destination['pause_periodic'] ) { $files_status = '<span class="backpbuddy-live-stats-paused">' . __( 'Paused', 'it-l10n-backupbuddy' ) . '</span>'; $files_status_row = 'backupbuddy-live-stats-paused-row'; } // Database total size. if ( 0 == $state['stats']['files_total_size'] ) { $totalDatabaseSizeDisplay = '<span class="description">Calculating...</span>'; } else { $totalDatabaseSizeDisplay = pb_backupbuddy::$format->file_size( $state['stats']['tables_total_size'] ); } // Calculate tables pending deletion. $tablesPendingDelete = ''; if ( 0 != $state['stats']['tables_pending_delete'] ) { $tablesPendingDelete = ', ' . $state['stats']['tables_pending_delete'] . ' ' . __( 'pending deletion', 'it-l10n-backupbuddy' ); } // Database tables sent. $tablesSent = ( $state['stats']['tables_total_count'] - $state['stats']['tables_pending_send'] ); // Tables percent sent (by count). if ( $state['stats']['tables_total_count'] > 0 ) { $tablesSentPercent = ceil( ( $tablesSent / $state['stats']['tables_total_count'] ) * 100 ); if ( ( 100 == $tablesSentPercent ) && ( $tablesSent < $state['stats']['tables_total_count'] ) ) { // If we were to display 100% sent but files still remain, convert to 99.9% to help indicate the gap. $tablesSentPercent = 99.9; } } else { $tablesSentPercent = 0; } // Files total size. if ( 0 == $state['stats']['files_total_size'] ) { $totalFilesSizeDisplay = '<span class="description">Calculating...</span>'; } else { $totalFilesSizeDisplay = '<span class="description">' . pb_backupbuddy::$format->file_size( $state['stats']['files_total_size'] ) . '</span>'; } // Files sent. $filesSent = ( $state['stats']['files_total_count'] - $state['stats']['files_pending_send'] ); // Files percent sent (by count). if ( $state['stats']['files_total_count'] > 0 ) { $filesSentPercent = ceil( ( $filesSent / $state['stats']['files_total_count'] ) * 100 ); if ( ( 100 == $filesSentPercent ) && ( $filesSent < $state['stats']['files_total_count'] ) ) { // If we were to display 100% sent but files still remain, convert to 99.9% to help indicate the gap. $filesSentPercent = 99.9; } } else { $filesSentPercent = 0; } // Calculate files pending deletion. $filesPendingDelete = ''; if ( 0 != $state['stats']['files_pending_delete'] ) { $filePendingDelete = ', ' . $state['stats']['files_pending_delete'] . ' ' . __( 'pending deletion', 'it-l10n-backupbuddy' ); } ?> <script> var backupbuddy_live_snapshot_status_pretty = ''; var backupbuddy_live_snapshot_step = 1; function backupbuddy_live_stats( stats ) { if ( stats.error_alert.length > 0 ) { jQuery( '.pb_backupbuddy_alert[rel="stash_live_error_alert"]' ).html( '<h3><?php _e( 'Oops, something may have gone wrong (most errors try to fix themselves after a bit of time)', 'it-l10n-backupbuddy' ); ?>:</h3><br>' + stats.error_alert ).show(); } else { jQuery( '.pb_backupbuddy_alert[rel="stash_live_error_alert"]' ).text( '' ).hide(); } // Display progress bar if needed. When not on daily_init AND ( during first completion OR during manual snapshot ) if ( ( ( 'daily_init' != stats.current_function ) && ( '0' == stats.first_completion || 2 === backupbuddy_live_snapshot_step ) ) || ( ( 'undefined' != typeof window.backupbuddy_live_snapshot_request_time ) && ( '' != window.backupbuddy_live_snapshot_request_time ) ) ) { //jQuery( '.pb_backupbuddy_alert' ).hide(); //jQuery( '.pb_backupbuddy_alert[rel="live_first_completion"]' ).show(); jQuery( '.backupbuddy-live-snapshot-progress-bar' ).show(); // if we're on db step, update UI if ( ( 'database_snapshot' == stats.current_function ) || ( 'send_pending_db_snapshots' == stats.current_function ) || ( 'process_table_deletions' == stats.current_function ) ) { jQuery( '.bb_progress-step-completed' ).removeClass( 'bb_progress-step-completed' ); // Reset. jQuery( '.bb_progress-step-database' ).addClass('bb_progress-step-active'); // DB active. } else if ( ( 'update_files_list' == stats.current_function ) || ( 'update_files_signatures' == stats.current_function ) || ( 'process_file_deletions' == stats.current_function ) || ( 'send_pending_files' == stats.current_function ) || ( 'audit_remote_files' == stats.current_function ) ) { // if we're on files step, update UI jQuery( '.bb_progress-step-database' ).removeClass('bb_progress-step-active').addClass( 'bb_progress-step-completed' ); // DB done. jQuery( '.bb_progress-step-files' ).addClass('bb_progress-step-active'); // FILES active. } else if ( ( 'run_remote_snapshot' == stats.current_function ) || ( stats.last_remote_snapshot_response_time > window.backupbuddy_live_snapshot_request_time ) ) { // or last snapshot trigger time is since this snapshot began. in case we miss the run_remote_snapshot step. jQuery( '.bb_progress-step-database' ).removeClass('bb_progress-step-active').addClass( 'bb_progress-step-completed' ); // DB done. jQuery( '.bb_progress-step-files' ).removeClass('bb_progress-step-active').addClass( 'bb_progress-step-completed' ); // FILES done. jQuery( '.bb_progress-step-snapshot' ).addClass('bb_progress-step-active' ); // SNAPSHOT active. } // While 'SnapShot' portion of progress bar is active, replace current function details to reflect this. if ( jQuery( '.bb_progress-step-snapshot' ).hasClass( 'bb_progress-step-active' ) ) { stats.current_function_pretty = '<?php _e( 'Building Snapshot', 'it-l10n-backupbuddy' ); ?>' + backupbuddy_live_snapshot_status_pretty; // backupbuddy_live_snapshot_status_pretty contains snapshot details returned from Stash server during snapshot building. } } else { // If first backup and on daily_init, reset status bar in case things got reset. if ( ( '0' == stats.first_completion ) && ( 'daily_init' == stats.current_function ) ) { jQuery( '.bb_progress-step-database' ).removeClass('bb_progress-step-active').removeClass( 'bb_progress-step-completed' ); jQuery( '.bb_progress-step-files' ).removeClass('bb_progress-step-active').removeClass( 'bb_progress-step-completed' ); jQuery( '.bb_progress-step-snapshot' ).removeClass('bb_progress-step-active').removeClass( 'bb_progress-step-completed' ); } } // Is manual snapshot pending? if ( 'undefined' != typeof window.backupbuddy_live_snapshot_request_time ) { // On remote snapshot function? if ( ( 1 == backupbuddy_live_snapshot_step ) && ( ( 'run_remote_snapshot' == stats.current_function ) || ( stats.last_remote_snapshot_response_time > window.backupbuddy_live_snapshot_request_time ) ) ) { jQuery( '.pb_backupbuddy_alert' ).hide(); jQuery( '.bb_progress-step-files' ).removeClass('bb_progress-step-active').addClass( 'bb_progress-step-completed' ); jQuery( '.bb_progress-step-snapshot' ).addClass('bb_progress-step-active'); backupbuddy_live_snapshot_step = 2; } if ( ( 2 == backupbuddy_live_snapshot_step ) && ( stats.last_remote_snapshot_response_time > window.backupbuddy_live_snapshot_request_time ) && ( 'object' == typeof stats.last_remote_snapshot_response ) ) { <?php if ( pb_backupbuddy::$options['log_level'] == '3' ) { // Full logging enabled. ?> console.log( 'Last snapshot response:' ); console.dir( stats.last_remote_snapshot_response ); <?php } ?> setTimeout( 'backupbuddy_live_snapshot_status_check( "' + stats.last_remote_snapshot_response.snapshot + '" )', 3000 ); jQuery( '.bb_progress-step-files' ).removeClass('bb_progress-step-active').addClass( 'bb_progress-step-completed' ); backupbuddy_live_snapshot_step = 3; } } // If new snapshot has begun since loading the page (and it's automatic triggered), then start watching for the status to update. stash_iframe = jQuery( '#backupbuddy_live-stash_iframe' ); if ( ( ( parseInt( stash_iframe.attr( 'data-refreshed' ) ) < ( stats.last_remote_snapshot ) ) ) && ( 'automatic' == stats.last_remote_snapshot_trigger ) ) { setTimeout( 'backupbuddy_live_snapshot_status_check( "' + stats.last_remote_snapshot_response.snapshot + '" )', 3000 ); } // Has there been a snapshot since the Stash frame was last refreshed? /* stash_iframe = jQuery( '#backupbuddy_live-stash_iframe' ); if ( ( parseInt( stash_iframe.attr( 'data-refreshed' ) ) < ( stats.last_remote_snapshot ) ) ) { refresh_delay_min = (60*15); refresh_time = stats.current_time + refresh_delay_min; // Refresh in `refresh_delay_min` minutes. setTimeout( function(refresh_time){ jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'src', jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'src' ) ); jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'data-refreshed', refresh_time ); // Update refresh timestamp. }, ( refresh_delay_min*1000 ), refresh_time ); } */ // This grabs the template, and inserts HTML ( with appropriate data ) into the DOM _.templateSettings.variable = 'stats'; _.templateSettings.evaluate = /<#([\s\S]+?)#>/g; _.templateSettings.interpolate = /\{\{\{([\s\S]+?)\}\}\}/g; _.templateSettings.escape = /\{\{([^\}]+?)\}\}(?!\})/g; var template = _.template( jQuery( '#backupbuddy-live-stats-tmpl' ).html() ); jQuery( '.backupbuddy-live-stats-container' ).html( template(stats) ); // First backup completion. if ( stats.first_completion > 0 ) { if ( jQuery( '.pb_backupbuddy_alert[rel="live_first_completion"]' ).is( ':visible' ) ) { jQuery( '.pb_backupbuddy_alert[rel="live_first_completion_done"]' ).show(); } jQuery( '.pb_backupbuddy_alert[rel="live_first_completion"]' ).remove(); } } // End backupbuddy_live_stats(). var snapshot_infected_warning = false; // Set true if malware is found to warn on download attempt. function backupbuddy_live_snapshot_status_check( snapshot_id ) { if ( '' == snapshot_id ) { return false; } loadingIndicator.show(); console.log( 'live_snapshot_status_check' ); jQuery.ajax({ url: snapshotStatusURL, type: 'post', data: { snapshot_id: snapshot_id }, context: document.body, success: function( data ) { if ( 0 != loadingIndicator.length ) { loadingIndicator.hide(); } jQuery( '.pb_backupbuddy_alert' ).hide(); jQuery( '.pb_backupbuddy_alert[rel="live_first_completion"]' ).show(); try { snapshotStatus = jQuery.parseJSON( data ); } catch(e) { // NOT json or some error. alert( 'Unable to get snapshot status. Details here and in console: `' + data + '`.' ); console.log( 'Live Stats Response (ERROR #48943745):' ); console.dir( data ); return false; } <?php if ( pb_backupbuddy::$options['log_level'] == '3' ) { // Full logging enabled. ?> console.log( 'BackupBuddy Snapshot Status:' ); console.dir( snapshotStatus ); <?php } ?> if ( '1' == snapshotStatus.complete ) { // Snapshot FINISHED. window.backupbuddy_live_snapshot_request_time = ''; // Unset. // Error encountered. if ( 'error' == snapshotStatus.status ) { alert( 'An unexpected error was encountered while creating your Snapshot: `' + snapshotStatus.message + '`. Check your Snapshot listing below to check whether the Snapshot was created or not.' ); } // Snapshot info is missing from response. if ( 'undefined' == typeof snapshotStatus.snapshot ) { jQuery( '.backupbuddy-live-snapshot-progress-bar' ).hide(); // No download info available so hide bar. // Refresh Stash iFrame to show new file IF it happened to work... jQuery( '.backupbuddy_live_iframe_load' ).show(); jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'src', jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'src' ) ); jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'data-refreshed', snapshotStatus.current_time ); // Update refresh timestamp. return false; } jQuery( '.bb_progress-step-snapshot, .bb_progress-step-files' ).removeClass('bb_progress-step-active').addClass( 'bb_progress-step-completed' ); jQuery( '.bb_progress-step-finished' ).addClass('bb_progress-step-completed'); jQuery( '#backupbuddy_live_snapshot-working' ).hide(); jQuery( '#backupbuddy_live_snapshot-success' ).show(); // Refresh Stash iFrame to show new file. jQuery( '.backupbuddy_live_iframe_load' ).show(); jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'src', jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'src' ) ); jQuery( '#backupbuddy_live-stash_iframe' ).attr( 'data-refreshed', snapshotStatus.current_time ); // Update refresh timestamp. // Malware scanning. jQuery.each( snapshotStatus.snapshot.malware.stats, function(index,value){ jQuery( '#backupbuddy_live_snapshot-success-malware .backupbuddy_live_malware_result[data-result="' + index + '"]' ).text( value ); }); if ( jQuery( snapshotStatus.snapshot.malware.files ).size() > 0 ) { snapshot_infected_warning = true; jQuery( '.backupbuddy_live_malware_result[data-result="infected_files"]' ).css( 'color', 'red' ); jQuery( '#backupbuddy_live_snapshot-success-malware-files' ).show(); jQuery.each( snapshotStatus.snapshot.malware.files, function(index,value){ jQuery( '#backupbuddy_live_snapshot-success-malware-files ul' ).append( '<li>' + index + '<ul><li style="list-style-type: circle;">' + value + '</li></ul></li>' ); }); } else { snapshot_infected_warning = false; } jQuery( '#backupbuddy_live_snapshot-success-duration' ).text( snapshotStatus.duration ).attr( 'title', 'Start: `' + snapshotStatus.timestamp_start + '`. Finish: `' + snapshotStatus.timestamp_finish + '`.' );; if ( true === snapshotStatus.snapshot.stash_copy ) { jQuery( '#backupbuddy_live_snapshot-stashed' ).show(); } if ( 'undefined' != typeof snapshotStatus.snapshot.zips.full ) { jQuery( '#backupbuddy_live_snapshot-success-backup_full' ).show().find('a').attr( 'href', snapshotStatus.snapshot.zips.full ); } if ( 'undefined' != typeof snapshotStatus.snapshot.zips.db ) { jQuery( '#backupbuddy_live_snapshot-success-backup_db' ).show().find('a').attr( 'href', snapshotStatus.snapshot.zips.db ); } if ( 'undefined' != typeof snapshotStatus.snapshot.zips.plugins ) { jQuery( '#backupbuddy_live_snapshot-success-backup_plugins' ).show().find('a').attr( 'href', snapshotStatus.snapshot.zips.plugins ); } if ( 'undefined' != typeof snapshotStatus.snapshot.zips.themes ) { jQuery( '#backupbuddy_live_snapshot-success-backup_themes' ).show().find('a').attr( 'href', snapshotStatus.snapshot.zips.themes ); } if ( ( false === snapshotStatus.snapshot.missing_ib ) && ( 'undefined' != typeof snapshotStatus.snapshot.importbuddy ) ) { jQuery( '#backupbuddy_live_snapshot-success-backup_importbuddy' ).show().find('a').attr( 'href', snapshotStatus.snapshot.importbuddy.url ); } } else { // Snapshot IN PROGRESS. jQuery( '#backupbuddy_live_snapshot-success' ).hide(); //jQuery( '#backupbuddy_live_snapshot-working' ).show(); backupbuddy_live_snapshot_status_pretty = ' - ' + snapshotStatus.message; //jQuery( '#backupbuddy_live_snapshot-working-status' ).text( snapshotStatus.message ); //jQuery( '#backupbuddy_live_snapshot-working-duration' ).text( snapshotStatus.duration ); setTimeout( 'backupbuddy_live_snapshot_status_check( "' + snapshot_id + '" )', 5000 ); } } }); } // End backupbuddy_live_snapshot_status_check(). </script> <?php require_once( pb_backupbuddy::plugin_path() . '/destinations/live/_statsPoll.php' ); ?> <div class="bb_progress-bar backupbuddy-live-snapshot-progress-bar clearfix"> <div class="bb_progress-step bb_progress-step-database"> <div class="bb_progress-step-icon"></div> <div class="bb_progress-step-title">Database</div> <span class="bb_progress-loading"></span> </div> <div class="bb_progress-step bb_progress-step-files"> <div class="bb_progress-step-icon"></div> <div class="bb_progress-step-title">Files</div> <span class="bb_progress-loading"></span> </div> <div class="bb_progress-step bb_progress-step-snapshot"> <div class="bb_progress-step-icon"></div> <div class="bb_progress-step-title">Remote Snapshot</div> <span class="bb_progress-loading"></span> </div> <div class="bb_progress-step bb_progress-step-finished"> <div class="bb_progress-step-icon"></div> <div class="bb_progress-step-title">Finished!</div> <span class="bb_progress-loading"></span> </div> </div> <div class="backupbuddy-live-stats-container postbox"></div> <script type="text/template" id="backupbuddy-live-stats-tmpl"> <div class="backupbuddy-live-stats-grid"> <div class="col col-3-3"> <div class="backupbuddy-live-stats-currently"> <span class="backupbuddy-pulsing-orb"></span> <span class="backupbuddy-live-stats-currently-text"> <span class="backupbuddy-inline-label"><?php _e( 'Currently', 'it-l10n-backupbuddy' ); ?></span>: {{ stats.current_function_pretty }} </span> <div class="backupbuddy-live-stats-help"> <a href="https://ithemes.com/support/" class="backupbuddy-live-button secondary" target="_blank"><?php _e( 'Need Help?', 'it-l10n-backupbuddy' ); ?></a> <span class="backupbuddy-live-stats-version-number">v<?php echo pb_backupbuddy::settings( 'version' ) ?></span> </div> </div> </div> <div class="col col-2-3"> <div class="col col-1-3"> <div class="backupbuddy-live-stats-database backupbuddy-live-stats-column <# if ( stats.continuous_status == '0' ) { #>paused <# } #>"> <div class="backupbudy-live-stats-data-container"> <div class="backupbuddy-live-stats-meta-overlay"> <div class="backupbuddy-live-stats-meta-section"> <span><?php _e( 'Last Activity', 'it-l10n-backupbuddy' ); ?></span> {{ stats.last_database_live_activity_ago }} </div> <div class="backupbuddy-live-stats-meta-section"> <span><?php _e( 'Next Full Scan', 'it-l10n-backupbuddy' ); ?></span> {{ stats.next_db_snapshot_pretty }} </div> </div> <div class="backupbuddy-live-stats-column-heading"> <?php _e( 'Database', 'it-l10n-backupbuddy' ); ?> </div> <div class="backupbuddy-live-stats-big-number"> {{ stats.database_tables_sent }} </div> <div class="backupbuddy-live-stats-sub-numbers"> <?php _e( 'of', 'it-l10n-backupbuddy' ); ?> {{ stats.database_tables_total }}<br> <?php _e( 'Tables', 'it-l10n-backupbuddy' ); ?> </div> <div class="backupbuddy-live-stats-progress-bar-container"> <div class="backupbuddy-live-stats-progress-bar"> <div class="backupbuddy-live-stats-progress-bar-highlight <# if ( '100' != stats.database_tables_sent_percent ) { #>animate<# } #>" title="{{stats.database_tables_sent_percent }}%" style="width:{{ stats.database_tables_sent_percent }}%"></div> </div> <div class="backupbuddy-live-stats-progress-bar-percentage"> {{{ Math.floor(stats.database_tables_sent_percent) }}}% </div> </div> <div class="backupbuddy-live-stats-total"> {{ stats.database_size_pretty }} </div> </div> <div class="backupbuddy-live-stats-action"> <# if ( stats.continuous_status == '0' ) { #> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=resume_continuous' ); ?>" class="backupbuddy-live-button primary"><span class="dashicons dashicons-controls-play"></span><?php _e( 'Resume', 'it-l10n-backupbuddy' ); ?></a> <# } else { #> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=pause_continuous' ); ?>" class="backupbuddy-live-button secondary"><span class="dashicons dashicons-controls-pause"></span><?php _e( 'Pause', 'it-l10n-backupbuddy' ); ?></a> <# } #> </div> </div> </div> <div class="col col-1-3"> <div class="backupbuddy-live-stats-files backupbuddy-live-stats-column <# if ( stats.periodic_status == '0' ) { #>paused <# } #>"> <div class="backupbudy-live-stats-data-container"> <div class="backupbuddy-live-stats-meta-overlay"> <div class="backupbuddy-live-stats-meta-section"> <span><?php _e( 'Last Activity', 'it-l10n-backupbuddy' ); ?></span> {{ stats.last_periodic_activity_ago }} </div> <div class="backupbuddy-live-stats-meta-section"> <span><?php _e( 'Next Full Scan', 'it-l10n-backupbuddy' ); ?></span> {{ stats.next_periodic_restart_pretty }} </div> </div> <div class="backupbuddy-live-stats-column-heading"> <?php _e( 'Files', 'it-l10n-backupbuddy' ); ?> </div> <div class="backupbuddy-live-stats-big-number"> {{ stats.files_sent }} </div> <div class="backupbuddy-live-stats-sub-numbers"> <?php _e( 'of', 'it-l10n-backupbuddy' ); ?> {{ stats.files_total }}<br> <?php _e( 'Files', 'it-l10n-backupbuddy' ); ?> </div> <div class="backupbuddy-live-stats-progress-bar-container"> <div class="backupbuddy-live-stats-progress-bar"> <div class="backupbuddy-live-stats-progress-bar-highlight <# if ( '100' != stats.files_sent_percent ) { #>animate<# } #>" title="{{ stats.files_sent_percent }}%"style="width:{{ stats.files_sent_percent }}%"></div> </div> <div class="backupbuddy-live-stats-progress-bar-percentage"> {{{ Math.floor(stats.files_sent_percent) }}}% </div> </div> <div class="backupbuddy-live-stats-total"> {{ stats.files_size_pretty }} </div> </div> <div class="backupbuddy-live-stats-action"> <# if ( stats.periodic_status == '0' ) { #> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=resume_periodic' ); ?>" class="backupbuddy-live-button primary"><span class="dashicons dashicons-controls-play"></span><?php _e( 'Resume', 'it-l10n-backupbuddy' ); ?></a> <# } else { #> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=pause_periodic' ); ?>" class="backupbuddy-live-button secondary"><span class="dashicons dashicons-controls-pause"></span><?php _e( 'Pause', 'it-l10n-backupbuddy' ); ?></a> <# } #> </div> </div> </div> <div class="col col-1-3"> <div class="backupbuddy-live-stats-storage backupbuddy-live-stats-column last"> <div class="backupbuddy-live-stats-column-heading"> <?php _e( 'Storage', 'it-l10n-backupbuddy' ); ?> </div> <div class="backupbuddy-live-stats-big-number"> <# if ( stats.stash ) { #> {{ stats.stash.quota_used_nice }} <# } else { #> <?php _e( 'Pending', 'it-l10n-backupbuddy' ); ?> <# } #> </div> <div class="backupbuddy-live-stats-sub-numbers"> <# if ( stats.stash ) { #> <?php _e( 'of', 'it-l10n-backupbuddy' ); ?> {{ stats.stash.quota_total_nice }}<br> <?php _e( 'Used', 'it-l10n-backupbuddy' ); ?> <# } else { #> <?php echo sprintf( __( 'Storage Amount %s Currently Unavailable', 'it-l10n-backupbuddy' ), '<br>' ); ?> <# } #> </div> <div class="backupbuddy-live-stats-progress-bar-container"> <# if ( stats.stash ) { #> <div class="backupbuddy-live-stats-progress-bar"> <div class="backupbuddy-live-stats-progress-bar-highlight" title="{{ stats.stash.quota_used_percent }}%" style="width:{{ stats.stash.quota_used_percent }}%"></div> </div> <# } #> <div class="backupbuddy-live-stats-progress-bar-percentage"> <# if ( stats.stash ) { #> {{{ Math.floor(stats.stash.quota_used_percent) }}}% <# } #> </div> </div> <div class="backupbuddy-live-stats-total"></div> <div class="backupbuddy-live-stats-action"> <a href="https://sync.ithemes.com/stash" target="_blank" class="backupbuddy-live-button primary"><?php _e( 'Manage Remote Files', 'it-l10n-backupbuddy' ); ?></a><br> <a href="https://ithemes.com/backupbuddy-stash/" target="_blank" class="backupbuddy-live-button secondary need-more"><?php _e( 'Need More Storage?', 'it-l10n-backupbuddy' ); ?></a> </div> </div> </div> </div> <div class="col col-1-3"> <div class="backupbuddy-live-stats-overview"> <h3><?php _e( 'BackupBuddy Stash Live created new zip files for you as of', 'it-l10n-backupbuddy' ); ?>:</h3> <div class="backupbuddy-stats-time-ago">{{ stats.last_remote_snapshot_ago }}</div> <a href="#" class="backupbuddy-stats-help-link"> <?php _e( 'What does this mean?', 'it-l10n-backupbuddy' ); ?> <span class="backupbuddy-stats-time-ago-explanation"> <?php _e( 'This is the time since your latest full Snapshot was taken by BackupBuddy Stash Live. Stash Live continuously watches for changes and pushes them up for safe storage. Periodically a "Snapshot" in time is created which is a recording of the state of your site at that time. You can download your latest Snapshot zip files from the Sync dashboard.', 'it-l10n-backupbuddy' ); ?> </span> </a> <div class="backupbuddy-stats-overview-create-snapshot"> <p><?php _e( 'Need a more recent snapshot?', 'it-l10n-backupbuddy' ); ?></p> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=create_snapshot' ); ?>" class="backupbuddy-live-button primary"><?php _e( 'Create Manual Snapshot', 'it-l10n-backupbuddy' ); ?></a> </div> </div> </div> </div> </script> <script> var snapshotStatusURL = '<?php echo pb_backupbuddy::ajax_url( 'live_snapshot_status' ); ?>'; // AJAX status check URL. jQuery(document).ready(function() { backupbuddy_live_stats( jQuery.parseJSON( '<?php echo json_encode( $stats ); ?>' ) ); loadingIndicator = jQuery( '.pb_backupbuddy_loading' ); jQuery(document).on( 'click', '.backupbuddy-stats-help-link', function(e) { e.preventDefault(); jQuery( '.backupbuddy-stats-time-ago-explanation' ).addClass('visible'); }); jQuery(document).on( 'mouseleave', '.backupbuddy-stats-time-ago-explanation', function() { jQuery( '.backupbuddy-stats-time-ago-explanation' ).removeClass('visible'); }); }); </script> <?php // Display remote files stored in Stash. ?> <br style="clear: both;"><br> <h3><?php _e( 'Stash Live Remote Snapshot Files', 'it-l10n-backupbuddy' ); ?></h3> <p class="description restrict-length"> <?php echo sprintf( __( 'Below is a listing of your Snapshot zip files stored in Stash. You can copy these files locally, download them for use, or <a href="%s" target="_blank">manage them in iThemes Sync</a>, including traditional backups sent to a Stash destination. To learn more about managing your Stash Storage, <a href="%s" target="_blank">click here</a>. ', 'it-l10n-backupbuddy'), 'https://sync.ithemes.com/stash', 'https://ithemes.com/backupbuddy-stash' ); ?> </p> <div class="backupbuddy_live_iframe_load"> <img src="<?php echo pb_backupbuddy::plugin_url(); ?>/images/loading.gif" title="Loading... This may take a few seconds..." style="vertical-align: -3px;"> <?php _e( 'Loading remote Snapshot files list...', 'it-l10n-backupbuddy' ); ?> </div> <iframe id="backupbuddy_live-stash_iframe" data-refreshed="<?php echo time(); ?>" src="<?php echo pb_backupbuddy::ajax_url( 'live_stash_files' ); ?>" frameBorder="0" style="width: 100%;" onLoad="backupbuddy_resizeIframe(this); jQuery( '.backupbuddy_live_iframe_load' ).hide();">Error #433894473. Browser not compatible with iframes.</iframe> <br style="clear: both;"><br><br><br><br><br> <a href="javascript:void(0);" class="button button-secondary button-tertiary" onClick="jQuery('.backupbuddy-live-advanced-troubleshooting-wrap').slideToggle();">Advanced Troubleshooting Options</a> <a href="<?php echo pb_backupbuddy::ajax_url( 'live_troubleshooting_download' ); ?>" class="button button-secondary button-tertiary">Download Troubleshooting Data (.txt)</a> <div class="backupbuddy-live-advanced-troubleshooting-wrap" style="display: none; background: #E5E5E5; padding: 15px; margin-top: 15px; border-radius: 10px;"> <h1>Advanced Troubleshooting Options</h1> Support may advise you to use these options to help work around a problem or troubleshoot issues. Caution is advised if using these options without guidance. <br><br> <b>Function running at page load:</b><br> <code><?php echo $state['step']['function']; ?> - <?php if ( 'update_files_list' == $state['step']['function'] ) { echo '*Hidden due to size for this function*'; } else { print_r( $state['step']['args'] ); } ?></code> <br><br> <b>Account:</b><br> <?php echo $destination['itxapi_username']; ?> (<a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=disconnect' ); ?>">Disconnect</a>) <br><br> <h4>Actions:</h4> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=resume_periodic&skip_run_live_now=1' ); ?>" class="button button-secondary button-tertiary">Unpause Periodic Without Running</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=reset_send_attempts' ); ?>" class="button button-secondary button-tertiary">Reset Send Attempts</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=reset_file_audit_times' ); ?>" class="button button-secondary button-tertiary">Reset File Audit Times</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=uncache_credentials' ); ?>" class="button button-secondary button-tertiary">Uncache Live Credentials</a> <h4>Time Stats:</h4> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=reset_last_activity' ); ?>" class="button button-secondary button-tertiary">Reset Last Activity Time</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=reset_first_completion' ); ?>" class="button button-secondary button-tertiary">Reset First Completion Time</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=reset_last_remote_snapshot' ); ?>" class="button button-secondary button-tertiary">Reset Last Remote Snapshot Time</a> <h4>Misc:</h4> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=last_snapshot_details' ); ?>" class="button button-secondary button-tertiary" style="<?php if ( '' == $state['stats']['last_remote_snapshot_id'] ) { echo 'opacity: 0.4;'; } ?>">Last Snapshot Details</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=delete_catalog' ); ?>" class="button button-secondary button-tertiary" onclick="if ( !confirm('WARNING: This will erase your local catalog of files. All files may need to be re-uploaded. Are you sure you want to do this?') ) { return false; }">Delete Catalog & State</a> <h4>Steps:</h4> <div style="float: left;"> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=restart_periodic' ); ?>" class="button button-secondary button-tertiary">Restart Periodic Process</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=restart_periodic_force' ); ?>" class="button button-secondary button-tertiary">Restart Periodic Process (force)</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=resume_periodic_step' ); ?>" class="button button-secondary button-tertiary">Resume Periodic Process</a> </div> <div style="float: left;"> <form method="post" action="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=restart_at_step' ); ?>"> <select name="live_step"> <option value="daily_init">Daily Initialization</option> <option value="database_snapshot">Database Snapshot</option> <option value="send_pending_db_snapshots">Send Pending Database Snapshots</option> <option value="process_table_deletions">Process Table Deletions</option> <option value="update_files_list">Update Files List</option> <option value="update_files_signatures">Update Files Signatures</option> <option value="process_file_deletions">Process File Deletions</option> <option value="send_pending_files">Send Pending Files</option> <option value="audit_remote_files">Audit Remote Files</option> <option value="run_remote_snapshot">Run Remote Snapshot</option> </select> <input type="submit" name="submit" value="Run at Step (Force)"> </form> </div> <br style="clear: both;"> <h4>Raw Data:</h4> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_tables_raw' ); ?>" class="button button-secondary button-tertiary">View Catalog Tables</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_signatures_raw' ); ?>" class="button button-secondary button-tertiary">View Catalog Files</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_catalog_raw' ); ?>" class="button button-secondary button-tertiary">View Entire Catalog</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_state' ); ?>" class="button button-secondary button-tertiary">View Entire State</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_raw_settings' ); ?>" class="button button-secondary button-tertiary">View Settings</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_stats' ); ?>" class="button button-secondary button-tertiary">View Stats</a> <h4>Pretty Data:</h4> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_signatures' ); ?>" class="button button-secondary button-tertiary">View Formatted Catalog Files</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_tables' ); ?>" class="button button-secondary button-tertiary">View Formatted Catalog Tables</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_files' ); ?>" class="button button-secondary button-tertiary">View Remotely Stored Files</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_files_tables' ); ?>" class="button button-secondary button-tertiary">View Remotely Stored Tables</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=troubleshooting' ); ?>" class="button button-secondary button-tertiary">View Troubleshooting Data</a> <h4>Logging:</h4> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=view_log' ); ?>" class="button button-secondary button-tertiary">View Status Log</a> <a href="<?php echo pb_backupbuddy::nonce_url( $admin_url . '?page=pb_backupbuddy_live&live_action=clear_log' ); ?>" class="button button-secondary button-tertiary">Clear Status Log</a> </div> <?php // Handles thickbox auto-resizing. Keep at bottom of page to avoid issues. if ( !wp_script_is( 'media-upload' ) ) { wp_enqueue_script( 'media-upload' ); wp_print_scripts( 'media-upload' ); }