HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/www/_trash/wp-content/plugins/wp-sync-db/template/migrate.php
<?php
global $wpdb;
global $loaded_profile;

if( isset( $_GET['wpsdb-profile'] ) ){
	$loaded_profile = $this->get_profile( $_GET['wpsdb-profile'] );
}
else{
	$loaded_profile = $this->default_profile;
}

$is_default_profile = isset( $loaded_profile['default_profile'] );

$convert_exclude_revisions = false;
$convert_post_type_selection = false;
if( ! $is_default_profile ) {
	if( isset( $loaded_profile['exclude_revisions'] ) ) {
		$convert_exclude_revisions = true;
	}
	/* We used to provide users the option of selecting which post types they'd like to migrate.
	 * We found that our wording for this funtionality was a little confusing so we switched it to instead read "Exclude Post Types"
	 * Once we made the switch we needed a way of inverting their saved post type selection to instead exclude the select post types.
	 * This was required to make their select compatible with the new "exclude" wording.
	 * This is easy enough for "push" and "export" saved profile as we know which post types exist on the local system and
	 * can easily invert the selection. Pull saved profiles is a little tricker.
	 * $this->maybe_update_profile() is used to update deprecated profile options to their new values.
	 * At the time of page request $this->maybe_update_profile() cannot be used to update a pull profile as we don't know which
	 * post types exist on the remote machine. As such we invert this selection later using the $convert_post_type_selection flag below.
	*/
	if ( isset( $loaded_profile['post_type_migrate_option'] ) && 'migrate_select_post_types' == $loaded_profile['post_type_migrate_option'] && 'pull' == $loaded_profile['action'] ) {
		$convert_post_type_selection = true;
	}
	$loaded_profile = $this->maybe_update_profile( $loaded_profile, $_GET['wpsdb-profile'] );
}

if( false == $is_default_profile ) {
	$loaded_profile = wp_parse_args( $loaded_profile, $this->default_profile );
}
$loaded_profile = wp_parse_args( $loaded_profile, $this->checkbox_options );
?>
<script type='text/javascript'>
	var wpsdb_default_profile = <?php echo ( $is_default_profile ? 'true' : 'false' ); ?>;
	<?php if( isset( $loaded_profile['select_tables'] ) && ! empty( $loaded_profile['select_tables'] ) ) : ?>
		var wpsdb_loaded_tables = <?php echo json_encode( $loaded_profile['select_tables'] ); ?>;
	<?php endif; ?>
	<?php if( isset( $loaded_profile['select_post_types'] ) ) : ?>
		var wpsdb_loaded_post_types = <?php echo json_encode( $loaded_profile['select_post_types'] ); ?>;
	<?php endif; ?>
	<?php if( isset( $loaded_profile['select_backup'] ) && ! empty( $loaded_profile['select_backup'] ) ) : ?>
		var wpsdb_loaded_tables_backup = <?php echo json_encode( $loaded_profile['select_backup'] ); ?>;
	<?php endif; ?>
	var wpsdb_convert_exclude_revisions = <?php echo ( $convert_exclude_revisions ? 'true' : 'false' ); ?>;
	var wpsdb_convert_post_type_selection = <?php echo ( $convert_post_type_selection ? '1' : '0' ); ?>;
</script>

<div class="migrate-tab content-tab">

	<form method="post" id="migrate-form" action="#migrate" enctype="multipart/form-data">

		<?php if( count( $this->settings['profiles'] ) > 0 ){ ?>
			<a href="<?php echo $this->plugin_base; ?>" class="return-to-profile-selection clearfix">&larr; <?php _e( 'Back to select a saved profile', 'wp-sync-db' ); ?></a>
		<?php } ?>

		<div class="option-section">

			<ul class="option-group migrate-selection">
				<li>
					<label for="savefile">
					<input id="savefile" type="radio" value="savefile" name="action"<?php echo ( $loaded_profile['action'] == 'savefile' ? ' checked="checked"' : ''  ); ?> />
					<?php _e( 'Export File', 'wp-sync-db' ); ?>
					</label>
					<ul>
						<li>
							<label for="save_computer">
							<input id="save_computer" type="checkbox" value="1" name="save_computer"<?php $this->maybe_checked( $loaded_profile['save_computer'] ); ?> />
							<?php _e( 'Save as file to your computer', 'wp-sync-db' ); ?>
							</label>
						</li>
						<?php if ( $this->gzip() ) : ?>
							<li>
								<label for="gzip_file">
									<input id="gzip_file" type="checkbox" value="1" name="gzip_file"<?php $this->maybe_checked( $loaded_profile['gzip_file'] ); ?> />
									<?php _e( 'Compress file with gzip', 'wp-sync-db' ); ?>
								</label>
							</li>
						<?php endif; ?>
					</ul>
				</li>
				<li class="pull-list">
					<label for="pull">
					<input id="pull" type="radio" value="pull" name="action"<?php echo ( $loaded_profile['action'] == 'pull' ? ' checked="checked"' : ''  ); ?> />
					<?php _e( 'Pull', 'wp-sync-db' ); ?><span class="option-description"><?php _e( 'Replace this site\'s db with remote db', 'wp-sync-db' ); ?></span>
					</label>
					<ul>
						<li></li>
					</ul>
				</li>
				<li class="push-list">
					<label for="push">
					<input id="push" type="radio" value="push" name="action"<?php echo ( $loaded_profile['action'] == 'push' ? ' checked="checked"' : ''  ); ?> />
					<?php _e( 'Push', 'wp-sync-db' ); ?><span class="option-description"><?php _e( 'Replace remote db with this site\'s db', 'wp-sync-db' ); ?></span>
					</label>
					<ul>
						<li></li>
					</ul>
				</li>
			</ul>

			<div class="connection-info-wrapper clearfix">
				<textarea class="pull-push-connection-info" name="connection_info" placeholder="<?php _e( 'Connection Info - Site URL &amp; Secret Key', 'wp-sync-db' ); ?>"><?php echo ( isset( $loaded_profile['connection_info'] ) ? $loaded_profile['connection_info'] : '' ); ?></textarea>
				<br />
				<div class="basic-access-auth-wrapper clearfix">
					<input type="text" name="auth_username" class="auth-username auth-credentials" placeholder="Username" autocomplete="off" />
					<input type="password" name="auth_password" class="auth-password auth-credentials" placeholder="Password" autocomplete="off" />
				</div>
				<input class="button connect-button" type="submit" value="Connect" name="Connect" autocomplete="off" />
			</div>

			<div class="notification-message warning-notice ssl-notice inline-message">
				<strong><?php _e( 'SSL Disabled', 'wp-sync-db' ); ?></strong> &mdash; <?php _e( 'We couldn\'t connect over SSL but regular http (no SSL) appears to be working so we\'ve switched to that. If you run a push or pull, your data will be transmitted unencrypted. Most people are fine with this, but just a heads up.', 'wp-sync-db' ); ?>
			</div>

		</div>

		<p class="connection-status"><?php _e( 'Please enter the connection information above to continue.', 'wp-sync-db' ); ?></p>

		<div class="notification-message error-notice different-plugin-version-notice inline-message" style="display: none;">
			<b><?php _e( 'Version Mismatch', 'wp-sync-db' ); ?></b> &mdash; <?php printf( __( 'We\'ve detected you have version <span class="remote-version"></span> of WP Sync DB at <span class="remote-location"></span> but are using %1$s here. Please go to the <a href="%2$s">Plugins page</a> on both installs and check for updates.', 'wp-sync-db' ), $GLOBALS['wpsdb_meta'][$this->plugin_slug]['version'], network_admin_url( 'plugins.php' ) ); ?>
		</div>

		<div class="notification-message error-notice directory-permission-notice inline-message" style="display: none;">
			<strong><?php _e( 'Cannot Access Uploads Directory', 'wp-sync-db' ); ?></strong> &mdash;
			<?php
				_e( 'We require write permissions to the standard WordPress uploads directory. Without this permission exports are unavailable. Please grant 755 permissions on the following directory:', 'wp-sync-db' );
				echo $this->get_upload_info( 'path' );
			?>
		</div>

		<div class="step-two">

			<div class="option-section">
				<div class="header-wrapper clearfix">
					<div class="option-heading find-heading"><?php _e( 'Find', 'wp-sync-db' ); ?></div>
					<div class="option-heading replace-heading"><?php _e( 'Replace', 'wp-sync-db' ); ?></div>
				</div>

				<p class="no-replaces-message"><?php _e( 'Doesn\'t look we have any replaces yet, <a href="#" class="js-action-link add-replace">add one?</a>', 'wp-sync-db' ); ?></p>

				<table id="find-and-replace-sort" class="clearfix replace-fields">
					<tbody>
					<tr class="replace-row original-repeatable-field">
						<td class="sort-handle-col">
							<span class="sort-handle"></span>
						</td>
						<td class="old-replace-col">
							<input type="text" size="40" name="replace_old[]" class="code" placeholder="Old value" autocomplete="off" />
						</td>
						<td class="arrow-col">
							<span class="right-arrow">&rarr;</span>
						</td>
						<td class="replace-right-col">
							<input type="text" size="40" name="replace_new[]" class="code" placeholder="New value" autocomplete="off" />
							<span style="display: none;" class="replace-remove-row" data-profile-id="0"></span>
						</td>
					</tr>
					<?php if( $is_default_profile ) : ?>
						<tr class="replace-row ui-state-default">
							<td class="sort-handle-col">
								<span class="sort-handle"></span>
							</td>
							<td class="old-replace-col">
								<input type="text" size="40" name="replace_old[]" class="code" id="old-url" placeholder="Old URL" value="<?php echo preg_replace( '#^https?:#', '', htmlentities( home_url() ) ); ?>" autocomplete="off" />
							</td>
							<td class="arrow-col">
								<span class="right-arrow">&rarr;</span>
							</td>
							<td class="replace-right-col">
								<input type="text" size="40" name="replace_new[]" class="code" id="new-url" placeholder="New URL" autocomplete="off" />
								<!-- <span class="replace-remove-row"></span> -->
								<span style="display: none;" class="replace-remove-row" data-profile-id="0"></span>
							</td>
						</tr>
						<tr class="replace-row ui-state-default">
							<td class="sort-handle-col">
								<span class="sort-handle"></span>
							</td>
							<td class="old-replace-col">
								<input type="text" size="40" name="replace_old[]" class="code" id="old-path" placeholder="Old file path" value="<?php echo htmlentities( $this->absolute_root_file_path ); ?>" autocomplete="off" />
							</td>
							<td class="arrow-col">
								<span class="right-arrow">&rarr;</span>
							</td>
							<td class="replace-right-col">
								<input type="text" size="40" name="replace_new[]" class="code" id="new-path" placeholder="New file path" autocomplete="off" />
								<span style="display: none;" class="replace-remove-row" data-profile-id="0"></span>
							</td>
						</tr>
					<?php else :
						$i = 1;
						foreach( $loaded_profile['replace_old'] as $replace_old ) : ?>
							<tr class="replace-row ui-state-default">
								<td class="sort-handle-col">
									<span class="sort-handle"></span>
								</td>
								<td class="old-replace-col">
									<input type="text" size="40" name="replace_old[]" class="code" placeholder="Old value" value="<?php echo $replace_old; ?>" autocomplete="off" />
								</td>
								<td class="arrow-col">
									<span class="right-arrow">&rarr;</span>
								</td>
								<td class="replace-right-col">
									<input type="text" size="40" name="replace_new[]" class="code" placeholder="New value" value="<?php echo ( isset( $loaded_profile['replace_new'][$i] ) ? $loaded_profile['replace_new'][$i] : '' ); ?>" autocomplete="off" />
									<span style="display: none;" class="replace-remove-row" data-profile-id="0"></span>
								</td>
							</tr>
						<?php
						++$i;
						endforeach; ?>
					<?php endif; ?>
							<tr class="pin">
								<td colspan="4"><a class="button add-row">Add Row</a></td>
							</tr>
					</tbody>
				</table>

				<div id="new-url-missing-warning" class="warning inline-message missing-replace"><?php printf( __( '<strong>New URL Missing</strong> &mdash; Please enter the protocol-relative URL of the remote website in the "New URL" field. If you are unsure of what this URL should be, please consult <a href="%s" target="_blank">our documentation</a> on find and replace fields.', 'wp-sync-db' ), 'https://deliciousbrains.com/wp-sync-db/documentation/#find-and-replace' ); ?></div>
				<div id="new-path-missing-warning" class="warning inline-message missing-replace"><?php printf( __( '<strong>New File Path Missing</strong> &mdash; Please enter the root file path of the remote website in the "New file path" field. If you are unsure of what the file path should be, please consult <a href="%s" target="_blank">our documentation</a> on find and replace fields.', 'wp-sync-db' ), 'https://deliciousbrains.com/wp-sync-db/documentation/#find-and-replace' ); ?></div>

			</div>

			<div class="option-section">
				<?php $tables = $this->get_table_sizes(); ?>
				<div class="header-expand-collapse clearfix">
					<div class="expand-collapse-arrow collapsed">&#x25BC;</div>
					<div class="option-heading tables-header">Tables</div>
				</div>

				<div class="indent-wrap expandable-content table-select-wrap" style="display: none;">

					<ul class="option-group table-migrate-options">
						<li>
							<label for="migrate-only-with-prefix">
							<input id="migrate-only-with-prefix" class="multiselect-toggle" type="radio" value="migrate_only_with_prefix" name="table_migrate_option"<?php echo ( $loaded_profile['table_migrate_option'] == 'migrate_only_with_prefix' ? ' checked="checked"' : '' ); ?> />
							<?php _e( 'Migrate all tables with prefix', 'wp-sync-db' ); ?> "<span class="table-prefix"><?php echo $wpdb->prefix; ?></span>"
							</label>
						</li>
						<li>
							<label for="migrate-selected">
							<input id="migrate-selected" class="multiselect-toggle show-multiselect" type="radio" value="migrate_select" name="table_migrate_option"<?php echo ( $loaded_profile['table_migrate_option'] == 'migrate_select' ? ' checked="checked"' : '' ); ?> />
							<?php _e( 'Migrate only selected tables below', 'wp-sync-db' ); ?>
							</label>
						</li>
					</ul>

					<div class="select-tables-wrap select-wrap">
						<select multiple="multiple" name="select_tables[]" id="select-tables" class="multiselect" autocomplete="off">
						<?php foreach( $tables as $table => $size ) :
							$size = (int) $size * 1024;
							if( ! empty( $loaded_profile['select_tables'] ) && in_array( $table, $loaded_profile['select_tables'] ) ){
								printf( '<option value="%1$s" selected="selected">%1$s (%2$s)</option>', $table, size_format( $size ) );
							}
							else{
								printf( '<option value="%1$s">%1$s (%2$s)</option>', $table, size_format( $size ) );
							}
						endforeach; ?>
						</select>
						<br />
						<a href="#" class="multiselect-select-all js-action-link"><?php _e( 'Select All', 'wp-sync-db' ); ?></a>
						<span class="select-deselect-divider">/</span>
						<a href="#" class="multiselect-deselect-all js-action-link"><?php _e( 'Deselect All', 'wp-sync-db' ); ?></a>
						<span class="select-deselect-divider">/</span>
						<a href="#" class="multiselect-invert-selection js-action-link"><?php _e( 'Invert Selection', 'wp-sync-db' ); ?></a>
					</div>
				</div>
			</div>

			<div class="option-section" style="display: block;">
				<label for="exclude-post-types" class="exclude-post-types-checkbox checkbox-label">
				<input type="checkbox" id="exclude-post-types" value="1" autocomplete="off" name="exclude_post_types"<?php $this->maybe_checked( $loaded_profile['exclude_post_types'] ); ?> />
				<?php _e( 'Exclude Post Types', 'wp-sync-db' ); ?>
				</label>

				<div class="indent-wrap expandable-content post-type-select-wrap" style="display: none;">
					<div class="select-post-types-wrap select-wrap">
						<select multiple="multiple" name="select_post_types[]" id="select-post-types" class="multiselect" autocomplete="off">
						<?php foreach( $this->get_post_types() as $post_type ) :
							if( ! empty( $loaded_profile['select_post_types'] ) && in_array( $post_type, $loaded_profile['select_post_types'] ) ){
								printf( '<option value="%1$s" selected="selected">%1$s</option>', $post_type );
							}
							else{
								printf( '<option value="%1$s">%1$s</option>', $post_type );
							}
						endforeach; ?>
						</select>
						<br />
						<a href="#" class="multiselect-select-all js-action-link"><?php _e( 'Select All', 'wp-sync-db' ); ?></a>
						<span class="select-deselect-divider">/</span>
						<a href="#" class="multiselect-deselect-all js-action-link"><?php _e( 'Deselect All', 'wp-sync-db' ); ?></a>
						<span class="select-deselect-divider">/</span>
						<a href="#" class="multiselect-invert-selection js-action-link"><?php _e( 'Invert Selection', 'wp-sync-db' ); ?></a>
					</div>
				</div>
			</div>

			<div class="option-section">
				<div class="header-expand-collapse clearfix">
					<div class="expand-collapse-arrow collapsed">&#x25BC;</div>
					<div class="option-heading tables-header"><?php _e( 'Advanced Options', 'wp-sync-db' ); ?></div>
				</div>

				<div class="indent-wrap expandable-content">

					<ul>
						<li>
							<label for="replace-guids">
							<input id="replace-guids" type="checkbox" value="1" name="replace_guids"<?php $this->maybe_checked( $loaded_profile['replace_guids'] ); ?> />
							<?php _e( 'Replace GUIDs', 'wp-sync-db' ); ?>
							</label>

							<a href="#" class="general-helper replace-guid-helper js-action-link"></a>

							<div class="replace-guids-info helper-message">
								<?php printf( __( 'Although the <a href="%s" target="_blank">WordPress Codex emphasizes</a> that GUIDs should not be changed, this is limited to sites that are already live. If the site has never been live, I recommend replacing the GUIDs. For example, you may be developing a new site locally at dev.somedomain.com and want to migrate the site live to somedomain.com.', 'wp-sync-db' ), 'http://codex.wordpress.org/Changing_The_Site_URL#Important_GUID_Note' ); ?>
							</div>
						</li>
						<li>
							<label for="exclude-spam">
							<input id="exclude-spam" type="checkbox" autocomplete="off" value="1" name="exclude_spam"<?php $this->maybe_checked( $loaded_profile['exclude_spam'] ); ?> />
							<?php _e( 'Exclude spam comments', 'wp-sync-db' ); ?>
							</label>
						</li>
						<li class="keep-active-plugins">
							<label for="keep-active-plugins">
							<input id="keep-active-plugins" type="checkbox" value="1" autocomplete="off" name="keep_active_plugins"<?php $this->maybe_checked( $loaded_profile['keep_active_plugins'] ); ?> />
							<?php _e( 'Do not migrate the \'active_plugins\' setting (i.e. which plugins are activated/deactivated)', 'wp-sync-db' ); ?>
							</label>
						</li>
						<li>
							<label for="exclude-transients">
							<input id="exclude-transients" type="checkbox" value="1" autocomplete="off" name="exclude_transients"<?php $this->maybe_checked( $loaded_profile['exclude_transients'] ); ?> />
							Exclude <a href="https://codex.wordpress.org/Transients_API" target="_blank">transients</a> (temporary cached data)
							</label>
						</li>
					</ul>

				</div>
			</div>

			<div class="option-section backup-options" style="display: block;">
				<label for="create-backup" class="backup-checkbox checkbox-label">
					<input type="checkbox" id="create-backup" value="1" autocomplete="off" name="create_backup"<?php $this->maybe_checked( $loaded_profile['create_backup'] ); ?> />
					<?php _e( 'Backup the <span class="directory-scope">local</span> database before replacing it', 'wp-sync-db' ); ?><br />
					<span class="option-description backup-description"><?php _e( 'An SQL file will be saved to', 'wp-sync-db' ); ?> <span class="uploads-dir"><?php echo $this->get_short_uploads_dir(); ?></span></span>
				</label>

				<div class="indent-wrap expandable-content">
					<ul>
						<li>
							<label for="backup-only-with-prefix">
							<input type="radio" id="backup-only-with-prefix" value="backup_only_with_prefix" name="backup_option"<?php echo ( $loaded_profile['backup_option'] == 'backup_only_with_prefix' ? ' checked="checked"' : '' ); ?> >
							<?php _e( 'Backup all tables with prefix', 'wp-sync-db' ); ?> "<span class="table-prefix"><?php echo $wpdb->prefix; ?></span>"
							</label>
						</li>
						<li>
							<label for="backup-selected">
							<input type="radio" id="backup-selected" value="backup_selected" name="backup_option"<?php echo ( $loaded_profile['backup_option'] == 'backup_selected' ? ' checked="checked"' : '' ); ?> >
							<?php _e( 'Backup only tables selected for migration', 'wp-sync-db' ); ?>
							</label>
						</li>
						<li>
							<label for="backup-manual-select">
							<input type="radio" id="backup-manual-select" value="backup_manual_select" name="backup_option"<?php echo ( $loaded_profile['backup_option'] == 'backup_manual_select' ? ' checked="checked"' : '' ); ?> >
							<?php _e( 'Backup only selected tables below', 'wp-sync-db' ); ?>
							</label>
						</li>
					</ul>

					<div class="backup-tables-wrap select-wrap">
						<select multiple="multiple" name="select_backup[]" id="select-backup" class="multiselect">
						<?php foreach( $tables as $table => $size ) :
							$size = (int) $size * 1024;
							if( ! empty( $loaded_profile['select_backup'] ) && in_array( $table, $loaded_profile['select_backup'] ) ){
								printf( '<option value="%1$s" selected="selected">%1$s (%2$s)</option>', $table, size_format( $size ) );
							}
							else{
								printf( '<option value="%1$s">%1$s (%2$s)</option>', $table, size_format( $size ) );
							}
						endforeach; ?>
						</select>
						<br />
						<a href="#" class="multiselect-select-all js-action-link"><?php _e( 'Select All', 'wp-sync-db' ); ?></a>
						<span class="select-deselect-divider">/</span>
						<a href="#" class="multiselect-deselect-all js-action-link"><?php _e( 'Deselect All', 'wp-sync-db' ); ?></a>
						<span class="select-deselect-divider">/</span>
						<a href="#" class="multiselect-invert-selection js-action-link"><?php _e( 'Invert Selection', 'wp-sync-db' ); ?></a>
					</div>
				</div>
				<p class="backup-option-disabled inline-message error-notice notification-message" style="display: none;"><?php printf( __( 'The backup option has been disabled as your <span class="directory-scope">local</span> uploads directory is currently not writeable. The following directory should have 755 permissions: <span class="upload-directory-location">%s</span></p>', 'wp-sync-db' ), $this->get_upload_info( 'path' ) ); ?>
			</div>

			<?php do_action( 'wpsdb_after_advanced_options' ); ?>

			<div class="option-section save-migration-profile-wrap">
				<label for="save-migration-profile" class="save-migration-profile checkbox-label">
				<input id="save-migration-profile" type="checkbox" value="1" name="save_migration_profile"<?php echo ( ! $is_default_profile ? ' checked="checked"' : '' ); ?> />
				<?php _e( 'Save Migration Profile', 'wp-sync-db' ); ?><span class="option-description"><?php _e( 'Save the above settings for the next time you do a similiar migration', 'wp-sync-db' ); ?></span>
				</label>

				<div class="indent-wrap expandable-content">
					<ul class="option-group">
						<?php
							foreach( $this->settings['profiles'] as $profile_id => $profile ){ ++$profile_id; ?>
								<li>
									<span class="delete-profile" data-profile-id="<?php echo $profile_id; ?>"></span>
									<label for="profile-<?php echo $profile_id; ?>">
									<input id="profile-<?php echo $profile_id; ?>" type="radio" value="<?php echo --$profile_id; ?>" name="save_migration_profile_option"<?php echo ( $loaded_profile['name'] == $profile['name'] ) ? ' checked="checked"' : ''; ?> />
									<?php echo $profile['name']; ?>
									</label>
								</li>
							<?php }
						?>
						<li>
							<label for="create_new" class="create-new-label">
							<input id="create_new" type="radio" value="new" name="save_migration_profile_option"<?php echo (  $is_default_profile ? ' checked="checked"' : '' ); ?> />
							<?php _e( 'Create new profile', 'wp-sync-db' ); ?>
							</label>
							<input type="text" placeholder="e.g. Live Site" name="create_new_profile" class="create-new-profile" />
						</li>
					</ul>
				</div>
			</div>

			<div class="notification-message warning-notice prefix-notice pull">
				<h4><?php _e( 'Warning: Different Table Prefixes', 'wp-sync-db' ); ?></h4>

				<p><?php _e( 'Whoa! We\'ve detected that the database table prefix differs between installations. Clicking the Migrate DB button below will create new database tables in your local database with prefix "<span class="remote-prefix"></span>".', 'wp-sync-db' ); ?></p>

				<p><?php printf( __( 'However, your local install is configured to use table prefix "%1$s" and will ignore the migrated tables. So, <b>AFTER</b> migration is complete, you will need to edit your local install\'s wp-config.php and change the "%1$s" variable to "<span class="remote-prefix"></span>".', 'wp-sync-db' ), $wpdb->prefix, $wpdb->prefix ); ?></p>

				<p><?php _e( 'This will allow your local install the use the migrated tables. Once you do this, you shouldn\'t have to do it again.', 'wp-sync-db' ); ?></p>
			</div>

			<div class="notification-message warning-notice prefix-notice push">
				<h4><?php _e( 'Warning: Different Table Prefixes', 'wp-sync-db' ); ?></h4>

				<p><?php printf( __( 'Whoa! We\'ve detected that the database table prefix differs between installations. Clicking the Migrate DB button below will create new database tables in the remote database with prefix "%s".', 'wp-sync-db' ), $wpdb->prefix ); ?></p>

				<p><?php printf( __( 'However, your remote install is configured to use table prefix "<span class="remote-prefix"></span>" and will ignore the migrated tables. So, <b>AFTER</b> migration is complete, you will need to edit your remote install\'s wp-config.php and change the "<span class="remote-prefix"></span>" variable to "%s".', 'wp-sync-db' ), $wpdb->prefix ); ?></p>

				<p><?php _e( 'This will allow your remote install the use the migrated tables. Once you do this, you shouldn\'t have to do it again.', 'wp-sync-db' ); ?></p>
			</div>

			<p class="migrate-db">
				<input type="hidden" class="remote-json-data" name="remote_json_data" autocomplete="off" />
				<input class="button-primary migrate-db-button" type="submit" value="Migrate DB" name="Submit" autocomplete="off" />
				<input class="button save-settings-button" type="submit" value="Save Profile" name="submit_save_profile" autocomplete="off" />
			</p>

		</div>

		<?php
		if( count( $this->settings['profiles'] ) > 0 ){ ?>
			<a href="<?php echo $this->plugin_base; ?>" class="return-to-profile-selection clearfix bottom">&larr; <?php _e( 'Back to select a saved profile', 'wp-sync-db' ); ?></a>
		<?php } ?>

	</form>
	<?php
	$this->template( 'migrate-progress' );
	?>

</div> <!-- end .migrate-tab -->