| Name | Size | Mode | Actions |
|---|---|---|---|
| anonymisation.php | 15263 | 0644 | editdlrm |
| autobackup.php | 52498 | 0644 | editdlrm |
| cloudfiles-enhanced.php | 16721 | 0644 | editdlrm |
| dropbox-folders.php | 4283 | 0644 | editdlrm |
| fixtime.php | 26724 | 0644 | editdlrm |
| google-enhanced.php | 7033 | 0644 | editdlrm |
| importer.php | 14768 | 0644 | editdlrm |
| incremental.php | 21339 | 0644 | editdlrm |
| lockadmin.php | 11168 | 0644 | editdlrm |
| migrator.php | 89326 | 0644 | editdlrm |
| moredatabase.php | 28857 | 0644 | editdlrm |
| morefiles.php | 56507 | 0644 | editdlrm |
| morestorage.php | 14731 | 0644 | editdlrm |
| multisite.php | 37403 | 0644 | editdlrm |
| noadverts.php | 353 | 0644 | editdlrm |
| pcloud.php | 26486 | 0644 | editdlrm |
| reporting.php | 28105 | 0644 | editdlrm |
| s3-enhanced.php | 26884 | 0644 | editdlrm |
| sftp.php | 45849 | 0644 | editdlrm |
| webdav.php | 50430 | 0644 | editdlrm |
| wp-cli.php | 46393 | 0644 | editdlrm |
/home/techb158/balacoffee.com/wp-content/plugins/updraftplus/addons/migrator.php (89326B)
'.__('This site has no backups to restore from yet.', 'updraftplus').'
'; $ret .= ''; $ret .= ''; $ret .= '
'; if ($incremental_set_found) $ret .= ''.__('For incremental backups, you will be able to choose which increments to restore at a later stage.', 'updraftplus').'
'; $ret .= ''; // $ret .= ''; return $ret; } /** * Disable W3TC and WP Super Cache, etc. */ public function restored_plugins() { if (true !== $this->is_migration) return; global $updraftplus; $active_plugins = maybe_unserialize($updraftplus->option_filter_get('active_plugins')); if (!is_array($active_plugins)) return; $disable_plugins = array( 'w3-total-cache/w3-total-cache.php' => 'W3 Total Cache', 'wp-super-cache/wp-cache.php' => 'W3 Super Cache', 'quick-cache/quick-cache.php' => 'Quick Cache', 'wp-fastest-cache/wpFastestCache.php' => 'WP Fastest Cache' ); foreach ($disable_plugins as $slug => $desc) { // in_array is case sensitive // if (in_array($slug, $active_plugins)) { if (preg_grep("#".$slug."#i", $active_plugins)) { unset($active_plugins[$slug]); $updraftplus->log("Disabled this plugin: %s: re-activate it manually when you are ready.", $desc); $updraftplus->log(sprintf(__("Disabled this plugin: %s: re-activate it manually when you are ready.", 'updraftplus'), $desc), 'notice-restore'); } } update_option('active_plugins', $active_plugins); } public function restorecachefiles($val, $file) { // On a migration, we don't want to add cache files if they do not already exist (because usually they won't work until re-installed) if (true !== $this->is_migration || false == $val) return $val; $val = (is_file(WP_CONTENT_DIR.'/'.$file)) ? $val : false; if (false == $val) { global $updraftplus; $updraftplus->log_e("%s: Skipping cache file (does not already exist)", $file); } return $val; } public function adminaction_searchreplace($options = array()) { global $updraftplus_restorer; $options = wp_parse_args($options, array( 'show_return_link' => true, 'show_heading' => true, )); if (!empty($options['show_heading'])) echo '
'.__('Information needed to continue:', 'updraftplus').'
';
$info['addui'] .= __('Enter details for where this new site is to live within your multisite install:', 'updraftplus').'
';
global $current_site;
if (!is_subdomain_install()) {
$info['addui'] .= '
';
} else {
$info['addui'] .= ' .
';
}
$info['addui'] .= '
';
$class = (!defined('UPDRAFTPLUS_SELECT2_ENABLE') || UPDRAFTPLUS_SELECT2_ENABLE) ? 'updraft_select2' : '';
$info['addui'] .= '
'.__('Warning', 'updraftplus').': '._n('Your .htaccess has an old site reference on line number %s. You should remove it manually.', 'Your .htaccess has an old site references on line numbers %s. You should remove them manually.', $count_old_site_references, 'updraftplus'), implode(', ', $htaccess_file_reference_line_num_arr)); ?>