1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<?php $blog_id = isset( $_POST[ 'blog_id' ] ) ? absint( $_POST[ 'blog_id' ] ) : die( 'Error #34775854b: Missing blog ID. Did you reload the page? Go back and try again.' ); global $wpdb; $new_db_prefix = $wpdb->get_blog_prefix( $blog_id ); //switch_to_blog( $blog_id );
echo $this->status_box( 'Migrating URLs in imported data . . .' ); echo '<div id="pb_importbuddy_working" style="width: 100px;"><center><img src="' . pb_backupbuddy::plugin_url() . '/images/working.gif" title="Working... Please wait as this may take a moment..."></center></div>'; pb_backupbuddy::flush();
// Set up destination upload path and URL information. /* $wp_upload_dir = ABSPATH . $this->get_ms_option( $blog_id, 'upload_path' ); $wp_upload_dir = rtrim( $wp_upload_dir, "\\/" ); // Trim trailing slash if there (shouldnt be by default but someone could have manually edited it) $this->status( 'details', 'Destination site uploads real file path: ' . $wp_upload_dir ); $wp_upload_url = $this->get_ms_option( $blog_id, 'fileupload_url' ); $wp_upload_url = rtrim( $wp_upload_url, "\\/" ); // Trim trailing slash if there (shouldnt be by default but someone could have manually edited it) */ $wp_upload_dir = $_POST['upload_path']; $wp_upload_url = $_POST['fileupload_url']; $this->status( 'details', 'Destination site real local path: ' . $wp_upload_dir ); $this->status( 'details', 'Destination site virtual uploads URL: ' . $wp_upload_url );
$this->load_backup_dat(); // Needed by _migrate_database.php.
// Figure out destination site URL for replacements. $destination_url = ''; if ( is_subdomain_install() ) { $destination_url = 'http://' . trim( $_POST[ 'blog_path' ], '/' ) . '/'; $this->status( 'details', 'Sub-domain installation.' ); } else { $destination_url = 'http://' . $current_blog->domain . '/' . trim( $_POST[ 'blog_path' ], '/' ) . '/'; // Slashes should already be handled but just in case.. $this->status( 'details', 'NOT sub-domain installation.' ); } $this->status( 'message', 'Destination URL: ' . $destination_url ); $this->import_options['siteurl'] = $destination_url;
global $wpdb; // Clean out some spam. TODO: any particular reason why this is done? pb_backupbuddy::status( 'details', 'Deleting spam.' ); $wpdb->query( $wpdb->prepare( "DELETE from {$new_db_prefix}_comments WHERE comment_approved = %s", 'spam' ) );
// Set up variables for _migrate_database.php $multisite_network_db_prefix = $wpdb->prefix; $destination_type = 'multisite_import'; // Used by _migrate_databasep.php to determine destination type specific data migration. $destination_siteurl = $destination_url; $destination_home = $destination_url; $destination_db_prefix = $new_db_prefix; if ( isset( pb_backupbuddy::$options['domain'] ) ) { $destination_domain = pb_backupbuddy::$options['domain']; } // Only in importbuddy. if ( isset( pb_backupbuddy::$options['path'] ) ) { $destination_path = pb_backupbuddy::$options['path']; } // Only in importbuddy.
if ( isset( $this->advanced_options['skip_database_migration'] ) && ( $this->advanced_options['skip_database_migration'] == 'true' ) ) { $this->status( 'message', 'Skipping database migration based on advanced settings.' ); } else { pb_backupbuddy::status( 'details', 'Loading database migration.' ); pb_backupbuddy::$options['dat_file'] = $this->_backupdata; require_once( pb_backupbuddy::plugin_path() . '/classes/_migrate_database.php' ); } /* require_once( pb_backupbuddy::plugin_path() . '/lib/dbreplace/dbreplace.php' ); $dbreplace = new pluginbuddy_dbreplace( $this ); $this->migrate_database( $upload_url ); */
$this->status( 'message', 'Database migrated.' ); echo '<script type="text/javascript">jQuery("#pb_importbuddy_working").hide();</script>'; pb_backupbuddy::flush();
global $current_site; $errors = false; $blog = $domain = $path = ''; $form_url = add_query_arg( array( 'step' => '7', 'action' => 'step7' ) , pb_backupbuddy::page_url() ); ?>
<form method="post" action="<?php echo esc_url( $form_url ); ?>"> <?php wp_nonce_field( 'bbms-migration', 'pb_bbms_migrate' ); ?> <input type='hidden' name='backup_file' value='<?php echo esc_attr( $_POST[ 'backup_file' ] ); ?>' /> <input type='hidden' name='blog_id' value='<?php echo esc_attr( absint( $_POST[ 'blog_id' ] ) ); ?>' /> <input type='hidden' name='blog_path' value='<?php echo esc_attr( $_POST[ 'blog_path' ] ); ?>' /> <input type='hidden' name='global_options' value='<?php echo base64_encode( serialize( $this->advanced_options ) ); ?>' /> <?php submit_button( __('Next Step') . ' »', 'primary', 'add-site' ); ?> </form>
|