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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
<?php global $wpdb, $current_site, $current_blog; $blog_id = isset( $_POST[ 'blog_id' ] ) ? absint( $_POST[ 'blog_id' ] ) : die( 'Error #34775854a: Missing blog ID. Did you reload the page? Go back and try again.' ); //switch_to_blog( intval( $blog_id ) ); if ( $blog_id == '' ) { die ('Bad blog id for table prefix. Error #4334343443434354548398439.' ); } $new_db_prefix = $wpdb->get_blog_prefix( $blog_id );
echo $this->status_box( 'Importing database content & 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();
// ********** BEGIN DROP TABLES ********** $drop_tables = array( 'commentmeta', 'comments', 'links', 'options', 'postmeta', 'posts', 'terms', 'term_relationships', 'term_taxonomy', 'usermeta', 'users' ); $this->status( 'message', 'Dropping existing tables (if any) for this specific site. New prefix to drop existing for: `' . $new_db_prefix . '` . . .' ); foreach ( $drop_tables as $table ) { $table = $new_db_prefix . $table; $wpdb->query( 'DROP TABLE IF EXISTS ' . $table ); } $this->status( 'message', 'Existing tables dropped.' ); // ********** END DROP TABLES **********
$this->load_backup_dat(); // Need for getting prefix for import update of prefix.
// ********** BEGIN IMPORT TABLES ********** //$options['db_server'] = DB_HOST; //$options['db_name'] = DB_NAME; //$options['db_user'] = DB_USER; //$options['db_password'] = DB_PASSWORD; $options['db_prefix'] = $new_db_prefix; // New prefix. pb_backupbuddy::status( 'details', 'New database prefix: `' . $options['db_prefix'] . '`' ); $options['zip_id'] = $this->import_options['zip_id']; $options['old_prefix'] = $this->_backupdata['db_prefix']; pb_backupbuddy::status( 'details', 'Old database prefix: `' . $options['old_prefix'] . '`' ); $options['max_execution_time'] = $this->advanced_options['max_execution_time']; $options['database_directory'] = $this->import_options['extract_to'] . '/wp-content/uploads/backupbuddy_temp/' . $this->import_options['zip_id'] . '/'; pb_backupbuddy::status( 'details', 'Database directory: `' . $options['database_directory'] . '`' ); $this->status( 'details', 'Looking for database to import in directory: `' . $options['database_directory'] . '`' );
$this->status( 'details', 'Starting actual import . . .' );
if ( isset( $this->advanced_options['skip_database_import'] ) && ( $this->advanced_options['skip_database_import'] == 'true' ) ) { $this->status( 'message', 'Skipping database import based on advanced settings.' ); $import_result = true; } else { // Calculate continuation. if ( isset( $_GET['continue'] ) && ( $_GET['continue'] != '' ) ) { $db_continue = (int)$_GET['continue']; } else { $db_continue = 0; } // Calculate ignoring SQL errors. /* if ( isset( $this->advanced_options['ignore_sql_errors'] ) && ( $this->advanced_options['ignore_sql_errors'] == 'true' ) ) { $ignore_sql_errors = true; } else { $ignore_sql_errors = false; } */ pb_backupbuddy::$options['max_execution_time'] = $options['max_execution_time']; // Used by mysqlbuddy. pb_backupbuddy::flush(); global $wpdb; require_once( pb_backupbuddy::plugin_path() . '/lib/mysqlbuddy/mysqlbuddy.php' ); pb_backupbuddy::$classes['mysqlbuddy'] = new pb_backupbuddy_mysqlbuddy( DB_HOST, DB_NAME, DB_USER, DB_PASSWORD, $options['db_prefix'] ); pb_backupbuddy::flush(); $db_files = glob( $options['database_directory'] . '*.sql' ); if ( ! is_array( $db_files ) ) { $db_files = array(); } foreach( $db_files as $db_file ) { $import_result = pb_backupbuddy::$classes['mysqlbuddy']->import( $db_file, $options['old_prefix'], $db_continue, true ); pb_backupbuddy::flush(); if ( true === $import_result ) { pb_backupbuddy::status( 'details', 'Success importing SQL file `' . $db_file . '`.' ); continue; } elseif ( false === $import_result ) { pb_backupbuddy::status( 'error', 'Error #384733: Failure importing SQL file `' . $db_file . '`.' ); die(); } else { pb_backupbuddy::status( 'error', 'Error #4378464: The import likely was about to timeout and required chunking but this is not yet available for Multisite. Failure importing SQL file `' . $db_file . '`.' ); die(); } } $this->status( 'details', 'Actual import done.' ); }
if ( $import_result === true ) { // Finished import. $form_url = add_query_arg( array( 'step' => '6', 'action' => 'step6' ) , pb_backupbuddy::page_url() ); $this->status( 'message', 'Database imported.' ); } elseif ( $import_result === false ) { // Import Failed. $this->status( 'error', 'Fatal import failure. Error #3489343' ); die( 'Fatal import failure. Error #3489343' ); } else { // Need to resume. $this->status( 'message', 'The database import is taking too long and must be broken up into multiple steps. Please continue to resume the import.' ); $form_url = add_query_arg( array( 'step' => '5', 'action' => 'step5', 'continue' => $import_result ) , pb_backupbuddy::page_url() ); } // ********** END IMPORT TABLES **********
echo '<script type="text/javascript">jQuery("#pb_importbuddy_working").hide();</script>'; pb_backupbuddy::flush();
if ( $import_result === false ) { echo '<p>' . __( 'Database import failed.', 'it-l10n-backupbuddy' ) . '</p>'; } else { global $current_site; $errors = false; $blog = $domain = $path = ''; ?> <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='upload_path' value='<?php echo esc_attr( $_POST['upload_path'] ); ?>' /> <input type='hidden' name='global_options' value='<?php echo base64_encode( serialize( $this->advanced_options ) ); ?>' /> <input type='hidden' name='fileupload_url' value='<?php echo esc_attr( $_POST['fileupload_url'] ); ?>' /> <?php if ( $import_result === true ) { submit_button( __('Next Step') . ' »', 'primary', 'add-site' ); } else { submit_button( __('Continue Database Import') . ' »', 'primary', 'add-site' ); } ?> </form> <?php } ?>
|