-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-change-domain.php
executable file
·271 lines (232 loc) · 9.77 KB
/
wp-change-domain.php
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
#!/usr/bin/php
<?php
/**
* Author: Daniel Doezema
* Contributor: Alon Peer, Christoph Herbst
* Author URI: http://dan.doezema.com
* Version: 1.0 (fork)
* Description: This script was developed to help ease migration of WordPress sites from one domain to another.
*
* Copyright (c) 2010, Daniel Doezema
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * The names of the contributors and/or copyright holder may not be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL DANIEL DOEZEMA BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @copyright Copyright (c) 2010 Daniel Doezema. (http://dan.doezema.com)
* @license http://dan.doezema.com/licenses/new-bsd New BSD License
*/
/* == CONFIG ======================================================== */
$wordpress_install_dir='./wordpress';
if ( !defined('ABSPATH') ) {
/** Set up WordPress environment */
require_once($wordpress_install_dir.'/wp-load.php');
}
/* == NAMESPACE CLASS =============================================== */
class DDWordPressDomainChanger {
/**
* Actions that occurred during request.
*
* @var array
*/
public $actions = array();
/**
* Notices that occurred during request.
*
* @var array
*/
public $notices = array();
/**
* Errors that occurred during request.
*
* @var array
*/
public $errors = array();
/**
* MySQLi Object
*
* @var string
*/
private $mysqli = null;
/**
* Class Constructor
*
* @return void
*/
public function __construct() {
}
/**
* Gets $table_prefix value from the wp-config.php file (if loaded).
*
* @return string;
*/
public function getConfigTablePrefix() {
global $wpdb;
return $wpdb->prefix;
}
/**
* Gets the "siteurl" WordPress option (if possible).
*
* @return mixed; false if not found.
*/
public function getOldDomain() {
$mysqli = $this->getDatabase();
if(mysqli_connect_error()) {
$this->notices[] = 'Unable to connect to this server\'s database using the settings from wp-config.php; check that it\'s properly configured.';
} else {
$result = $mysqli->query('SELECT * FROM '.$this->getConfigTablePrefix().'options WHERE option_name="siteurl";');
if(is_object($result) && ($result->num_rows > 0)) {
$row = $result->fetch_assoc();
return str_replace('http://','', $row['option_value']);
} else {
$this->error[] = 'The WordPress option_name "siteurl" does not exist in the "'.$this->getConfigTablePrefix().'options" table!';
}
}
return false;
}
/**
* Overrides the class self::$mysqli property with a different MySQLi instance.
*
* @return void;
*/
public function setDatabase(mysqli $mysqli) {
$this->mysqli = $mysqli;
}
/**
* Attempts to lazy load a connection to the mysql database based on the config file.
*
* @return mixed; MySQLi instance, false on failure to connect.
*/
public function getDatabase() {
if($this->mysqli === null) {
$this->mysqli = new mysqli(DB_HOST,DB_USER,DB_PASSWORD,DB_NAME);
if(mysqli_connect_error()) {
$this->notices[] = 'Unable to connect to this server\'s database using the settings from wp-config.php; check that it\'s properly configured.';
$this->mysqli = false;
}
}
return ($this->mysqli instanceof mysqli) ? $this->mysqli : false;
}
}
/* == START PROCEDURAL CODE ============================================== */
/**
* Recursive alternative to str_replace that supports replacing keys as well
*
* @param string $search
* @param string $replace
* @param array $array
* @param boolean $keys_too
*
* @return array
*/
function replaceTree($search="", $replace="", $array=false, $keys_too=false)
{
if (!is_array($array)) {
// Regular replace
return str_replace($search, $replace, $array);
}
$newArr = array();
foreach ($array as $k=>$v) {
// Replace keys as well?
$add_key = $k;
if ($keys_too) {
$add_key = str_replace($search, $replace, $k);
}
// Recurse
$newArr[$add_key] = replaceTree($search, $replace, $v, $keys_too);
}
return $newArr;
}
try{
$DDWPDC = new DDWordPressDomainChanger();
$POST["prefix"] = $DDWPDC->getConfigTablePrefix();
$POST["old_domain"] = $DDWPDC->getOldDomain();
$POST['new_domain'] = $argv[1];
if( !isset($argv[1]) ) {
// Let them correct this instead of assuming it's correct and removing the "http://".
throw new Exception('Please specify a new domain!');
}
// Check for "http://" in the new domain
if(stripos($POST['new_domain'], 'http://') !== false) {
// Let them correct this instead of assuming it's correct and removing the "http://".
throw new Exception('The "New Domain" field must not contain "http://"');
}
// DB Connection
$mysqli = $DDWPDC->getDatabase();
if(mysqli_connect_error()) {
throw new Exception('Unable to create database connection; most likely due to incorrect connection settings.');
}
// Escape $_POST data for sql statements.
$data = array();
foreach($POST as $key => $value) {
$data[$key] = $mysqli->escape_string($value);
}
// Update Options
$options = get_alloptions();
foreach( $options as $name => $option){
if ( false === strpos($option,$data['old_domain']))
continue;
$optObj = get_option($name);
$newObj = replaceTree($data['old_domain'],$data['new_domain'],$optObj);
update_option($name,$newObj);
}
$DDWPDC->actions[] = 'Old domain ('.$data['old_domain'].') replaced with new domain ('.$data['new_domain'].') in '.$data['prefix'].'options.option_value';
// Update Post Content
if(!$mysqli->query('UPDATE '.$data['prefix'].'posts SET post_content = REPLACE(post_content,"'.$data['old_domain'].'","'.$data['new_domain'].'");')) {
throw new Exception($mysqli->error);
}
$DDWPDC->actions[] = 'Old domain ('.$data['old_domain'].') replaced with new domain ('.$data['new_domain'].') in '.$data['prefix'].'posts.post_content';
// Update Post GUID
if(!$mysqli->query('UPDATE '.$data['prefix'].'posts SET guid = REPLACE(guid,"'.$data['old_domain'].'","'.$data['new_domain'].'");')) {
throw new Exception($mysqli->error);
}
$DDWPDC->actions[] = 'Old domain ('.$data['old_domain'].') replaced with new domain ('.$data['new_domain'].') in '.$data['prefix'].'posts.guid';
// Update "upload_path"
$upload_dir = realpath($wordpress_install_dir).'/wp-content/uploads';
if(!$mysqli->query('UPDATE '.$data['prefix'].'options SET option_value = "'.$upload_dir.'" WHERE option_name="upload_path";')) {
throw new Exception($mysqli->error);
}
$DDWPDC->actions[] = 'Option "upload_path" has been changed to "'.$upload_dir.'"';
// Delete "recently_edited" option. (Will get regenerated by WordPress)
if(!$mysqli->query('DELETE FROM '.$data['prefix'].'options WHERE option_name="recently_edited";')) {
throw new Exception($mysqli->error);
}
$DDWPDC->actions[] = 'Option "recently_edited" has been deleted -> Will be regenerated by WordPress.';
// Update User Meta
if(!$mysqli->query('UPDATE '.$data['prefix'].'usermeta SET meta_value = REPLACE(meta_value,"'.$data['old_domain'].'","'.$data['new_domain'].'");')) {
throw new Exception($mysqli->error);
}
$DDWPDC->actions[] = 'Old domain ('.$data['old_domain'].') replaced with new domain ('.$data['new_domain'].') in '.$data['prefix'].'usermeta.meta_value';
} catch (Exception $exception) {
$DDWPDC->errors[] = $exception->getMessage();
}
if(count($DDWPDC->errors) > 0): foreach($DDWPDC->errors as $error):
echo "Error:".$error."\n";
endforeach; endif;
if(count($DDWPDC->notices) > 0): foreach($DDWPDC->notices as $notice):
echo "Notice:".$notice."\n";
endforeach; endif;
if(count($DDWPDC->actions) > 0): foreach($DDWPDC->actions as $action):
echo "Action:".$action."\n";
endforeach; endif;
?>