I’m quite excited to have successfully migrated my blog from 2 WordPress blogs to just 1 WordPress MU install. I had initially set up 2 blogs running on one code-base using WP-Hive, and while I’m really impressed with the hive plugin, it’s always felt more like a hack than a true trustable upgradable solution.
My weekend began with, “Migrating from WordPress to MU can’t be that hard, can it?!” Boy, was I in for a surprise. I hope this brief post will spare you the pain I went through.
1. Download and Install
First, some good news: the README file does a great job walking you through the process of getting a blank MU install up and running. The default installation process for MU is strikingly similar to the standard WordPress install. A quick unzip of the MU files on your server, a few chmod’s, a fresh mysql database, and everything should be peachy. But that’s the good news, what’s the bad news?
2. Importing Your WordPress Data
Now if you’re like me, you might have noticed the tempting “Import” and “Export” buttons.
![]()
Don’t touch them! These buttons are nothing more than cleverly designed distractions – little pixel sirens – they are not your solution. With my very modest 5.8 Mb export file, I had one hell of a time getting MU to import the thing.
No matter what settings I tweaked, the import timed out after 60 seconds. I changed WPMU settings, I changed PHP max upload size, max timeout, and max memory settings. I ended up splitting the file into over 30 tiny pieces, and still couldn’t get it imported.
mind. numbing.
In my dedication slash foolishness, I wrestled with it for about 6 hours split over 3 days until I finally had enough. Maybe you’ll want to wrestle with splitting xml files and tweaking random upload settings (or maybe you’re lucky enough for it to just work), but not me. There had to be a better way, and luckily there is.
3. Create a New Blog
Creating a new blog in MU is a super easy process, just click
then the
button. Fill out the form and away you go.
Take special note of the ID that WPMU gives your new blog. The ID is in the left most column of the blogs list.
4. Migrate Your DAta – This Time For Real!
Fire up phpMyAdmin, and take a look at your old blog’s database. You’ll want to export the following tables to a .sql file:
- wp_comments
- wp_links
- wp_postmeta
- wp_posts
- wp_terms
- wp_term_relationships
- wp_term_taxonomy
Remember that ID from step 3? Open up the .sql in your text editor of choice, and globally replace “wp_” with “wp_{ID}_” (where {ID} is your blog’s ID).
Now point your phpMyAdmin at your WPMU’s database. You’ll notice in this database that you’ll already have tables with names like “wp_1_posts”, etc, so prefix all the tables with your blog ID in them with “old_”. The only table you’ll skip is “wp_1_options”.
Now that you’ve renamed those 7 tables, upload your .sql file into your WPMU database. You should now have a table list that looks something like the image to the right.
5. Fix Author of Posts
Last step! For every author in your old blog (probably just you), create a user in WPMU (if it’s you, it’ll be the MU admin). To assign all the posts to the admin MU user, run the following command in your MU database (substitute {ID} for the blog ID):
UPDATE wp_{ID}_posts SET post_author = 1
6. Done!
That’s it! You’ll probably want to log into the admin console and re-enable any plugins you need, and tweak your settings again. We omitted the wp_options table, so this process doesn’t import any blog settings at all. I tried importing settings as well, but hit a wall and was plenty happy to manually fix those.
At this very moment I am enjoying 1 admin panel, 1 click install for new blogs, 1 database, and 1 codebase. Simple. Upgradable. Trustable.
Enjoy your WordPress MU powered blog!

85 responses so far ↓
1
ikailo
// Oct 4, 2008 at 8:26 am
An excellent post! This will definitely be my how-to manual when I install WPMU.
WP Hive and WPMU have their uses and it’s great that you found what works best for you. Thanks for the mention.
2
Buck Wilson
// Oct 12, 2008 at 3:44 pm
Ok so how do I import data from WP -> WP (regular, not MU) without getting the 60 seconds error?
Should I just use phpMyAdmin and try and finagle IDs and such? Will that work or will I break something?
3
Adam Wulf
// Oct 15, 2008 at 9:16 am
@buck
while i haven’t tried it, migrating from WP -> WP should work the exact same – almost.
This post assumes your staying on the same domain name / blog install URL. Sounds like you’re moving URLs as well? In that case, you may need to do a global search in phpMyAdmin for your old URL, and manually replace it with your new URL.
4
Steve
// Dec 10, 2008 at 12:55 pm
This has just solved all my problems. I too share the sentiments mentioned at the start of this post, WordPress has the nack of sucking you in and distracting you with ‘tempting buttons’ that often dont do what you expected.
Thanks for your help!
5
The Ambuscade
// Dec 15, 2008 at 2:00 pm
[...] How to migrate from WordPress to WordPress MU (tags: wordpress wpmu migration obeertym) [...]
6
Wordpress MU | HelloCatFood
// Dec 21, 2008 at 9:28 am
[...] seems that you can have blogs created as subdirectories and as subdomains. Great! I’ve also been advised that migrating from WordPress to MU isn’t as smooth as it [...]
7
As the Crow Flies » Blog Archive » Update
// Jan 4, 2009 at 6:56 pm
[...] This proved an easy solution, however if your site is larger with more content, I would recommend another solution involving moving your MySQL tables over. This new section for my blog includes a revised theme, [...]
8
Andrea
// Jan 24, 2009 at 4:22 pm
Hi! Very nice guide!
I have an issue and I was hoping you would have some idea on how to solve. We run an online magazine, with around 50 authors on a normal WordPress. We hadn’t used MU both for ignorance about it and because we were not expecting to expand so much so quickly. The second reason is that we do not allow the authors to log in wordpress and post the articles themselves, but we have redactors taking care of them, to ensure the quality of the articles and of their look and feel. We have anyhow 50 and more profiles, to have the names and profiles of each writer in the page of their article.
Now the question : we want to move now to MU to create a network within the magazine, how can I move more quickly the whole list of users, with all their data in them, without having to recreate the users one by one in MU, and having to set up the author of the posts one by one? Thanks in advance!
9
kookimebux
// Feb 1, 2009 at 2:18 pm
Hello. And Bye.
10
Adam Wulf
// Feb 1, 2009 at 11:53 pm
@Andrea,
You should be able to just copy over the wp_users table, just as you would all the other wordpress tables. The WordPress Mu users table differs slightly, so you’d also need to run the following SQL command:
But copying over tables like this would copy everything in to 1 blog inside the Mu install. You’d still have to create blogs for each user, and presumably move posts from the main blog into each user’s blog as well. < = that I’m not as sure how to do
11
WordPress to WordPress MU - migration « lucky mu
// Feb 2, 2009 at 10:24 pm
[...] moving my sites to WordPress MU. I followed these directions and they worked for copying everything but my NextGen galleries. So how did I get the galleries [...]
12
Phani
// Feb 4, 2009 at 4:06 pm
Hi ,
I have a question!
My current wordpress blog is at http://www.angrezy.com.
I would like to use WordPress MU for the same domain.
Where should i first upload the WordPress MU Folder?? Since i am already running my blog with WordPress 2.7 on same domain name.
Eg: My existing root folder has folders like “WP-Admin” “Wp-Content” etc .
But when i upload the folder of “WordPress MU” all my previous folders will replace with “WordPress MU” Folders??
Please some help me out.
13
evl
// Feb 10, 2009 at 11:11 am
Do you have any idea how to get wordpress galleries to import into WPMU?
14
TradingIdeas.in
// Feb 15, 2009 at 2:04 am
Hi there ,
A good tutorial , but I m wondering what if we have only 1 blog now with WP2.7 and now shifting to WPMU 2.7.
In that case we could also link the db , username and password or our old database to a new MU installation.
Please clarify me , if I m wrong. As I m also facing that problem, my db is also higher than wp import export tools.
.
Waiting to for reply, thanks
15
Vincenzo
// Feb 16, 2009 at 7:10 am
What about the uploaded files? I mean, if you (like me) have a lot of images uploaded through the WordPress Media Manager and inserted into the posts, you also know that the source of these images is the absolute path in your WordPress installation.
In a classical WordPress installation, the path is something containing the following:
“wp-content/uploads/filename”
In a WordPress Mu blog this becomes something like
“wp-content//files//filename”
or
“files//filemae”
When you migrate your posts, how do you change the references to all the images and/or other files you have uploaded on the previous installation?
I hope I was clear.
Cheers,
V.
16
TradingIdeas.in
// Feb 17, 2009 at 3:01 pm
Yeah thats why , I dropped the idea of migration, and thought it is not a good idea for me. As of now I added some more blogs to my network by adding wp on subdomain and created diffrent mysql db.
But even if I attempted to go on to WPMU it will not affect me a lot bcz.. Currently I m having more than 500 post and all Images are loaded on google blogspot server or on photobucket or even in flicker address.
As I earlier I used the blogger.com platform to publisize my views. But now I shifted to WP .
Will think in future, when I will have a great userbase and too many content writer
17
Adam Wulf
// Feb 17, 2009 at 3:37 pm
as far as moving file uploads, i believe all i did was move the /uploads directory to wp-content/blogs.dir/1/files and everything just worked.
18
Faisal Ameer
// Mar 2, 2009 at 4:42 pm
Superb POST!!!!
19
Kuamadomo
// Mar 9, 2009 at 6:37 pm
[...] esta guía para [...]
20
Patrick Britton
// Mar 14, 2009 at 6:54 am
This needs to be posted on the official WordPress site. Simplest, best solution I have found. I spent so much time trying to get their crappy importer to work. A million thanks for sharing this.
21
Elevenfourteen.com » Blog Archive » successfull WordpressMU migration
// Mar 14, 2009 at 11:34 pm
[...] I recently migrated the wordpress installation at work from worpress 2.6 to wordpressMU 2.71 thanks to Adam Wulf’s post at http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/ [...]
22
RaiulBaztepo
// Mar 28, 2009 at 6:31 pm
Hello!
Very Interesting post! Thank you for such interesting resource!
PS: Sorry for my bad english, I’v just started to learn this language
See you!
Your, Raiul Baztepo
23
T-Pain
// Apr 5, 2009 at 6:42 pm
One Tip, Make sure you remove the brackets from the last step where you change the post author. This should help some save a few headaches.
24
Migrera från Wordpress till Wordpress MU | Xoda
// Apr 22, 2009 at 7:45 am
[...] How to migrate from WordPress to WordPress MU [...]
25
Andrea
// May 14, 2009 at 7:55 am
Hi Adam!
We have finished the transition from wp to wpmu, which for us included quite a few changes in the database.
anyway, now we are stuck with a final problem: when trying to change the name of a category… the category disappears and a (random?) tag goes at its place, becoming category! We are so stuck right now… any idea on what could this depend on?
26
anonymous lover
// May 21, 2009 at 10:41 am
Thanks, you made my morning easier.
27
CJ
// May 29, 2009 at 3:28 pm
Man, this saved me! Thanks so much for sharing this info. Simple but oh so gratifying
.
28
Adam Wulf
// Jun 11, 2009 at 2:49 pm
Andrea, sorry, no idea on the category/tag problem. I haven’t seen that one. Hopefully one of the other commenters has an idea what might be going wrong?
29
Edward
// Jun 12, 2009 at 12:45 am
Nice tutorial! Helped me a lot. I’d like to add that if you’ve uploaded files into the original wordpress site, the content is stored in: ~/wordpress/wp-content/uploads
And in wordpress mu this corresponds to: ~/wordpress-mu/wp-content/blogs.dir/{Blog ID}/files
I copied everything under ~/wordpress/wp-content/uploads to ~/wordpress-mu/wp-content/blogs.dir/1/files
I also used the following SQL command to update the post contents in the database: update WP_1_POSTS set POST_CONTENT = replace(POST_CONTENT, ‘wordpress/wp-content/uploads’, ‘wordpress-mu/wp-content/blogs.dir/1/files’)
Seems to be working so far
30
eddihughes
// Jun 18, 2009 at 6:56 pm
@Adam Wulf
What about the wp_usermeta table?
31
Adam Wulf
// Jun 23, 2009 at 12:02 pm
@eddihughes, I didn’t try moving the usersmeta since it wasn’t important in my case and I didn’t want to risk it. I’d try moving everything over except users+meta, then backup, then move users and meta and see how it works out. and better yet, report back here so we all know!
32
eddihughes
// Jun 23, 2009 at 12:38 pm
@adam
It actually migrated without any problems (from what I can tell so far).
In addition, I decided to make a custom query to assign the users to all the blogs.
For example, :
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(377, 6, ‘wp_1_capabilities’, ‘a:1:{s:6:”author”;b:1;}’),
(378, 6, ‘wp_1_user_level’, ’2′),
(379, 7, ‘wp_1_capabilities’, ‘a:1:{s:6:”author”;b:1;}’),
(380, 7, ‘wp_1_user_level’, ’2′),
33
jcnjr
// Jun 26, 2009 at 12:52 am
Thanks for this! I’m running into roadblocks with the users/usermeta part of our pending migration … eddihughes may be onto a fix, but it is still a bit Greek to me.
Can anyone help me with a query that will make sure all of our 700+ users become subscribers to wp_1? I also have a second admin that isn’t getting copied over with admin capabilities.
Many thanks in advance!
34
Rlander
// Jun 29, 2009 at 11:27 pm
Thanks! BTW, you don’t need to rename the tables if you use DROP TABLE in your exported .sql file.
35
Kimberly
// Jul 3, 2009 at 7:01 pm
Thanks for this. I have a standard WP site I want to migrate to WPMU.
This has saved me a lot of time and frustration.
36
Migrating from WordPress to WordPress MU
// Jul 3, 2009 at 7:08 pm
[...] the rest here: How to migrate from WordPress to WordPress MU | Wulf Share and [...]
37
jcnjr
// Jul 3, 2009 at 7:44 pm
FYI: For anyone who might care, here’s the query I was looking for thanks to Andrea and Ron at wpmututorials.com …
UPDATE wp_usermeta SET meta_key = 'wp_1_capabilities' WHERE meta_key = 'wp_capabilities'38
Ray
// Jul 8, 2009 at 6:56 pm
Re: Andrea (http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/#comment-4358)
I had the exact same problem last night on my localbox.
I kept on importing the same SQL file and somehow it fixed itself.
There’s something messed up in the wp_terms, wp_term_relationships, wp_term_taxonomy and possibly wp_links tables.
At least this was the case for me.
The link categories were showing the wrong count. That’s when I knew something was up. It still shows the wrong count, but at least the categories / tags are working for me again.
Sorry if that doesn’t help!
39
Bigdrobek » Migrace Wordpress na Wordpress MU
// Jul 20, 2009 at 1:45 pm
[...] http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/ [...]
40
Din wordpress in wordpress mu « vali ciorgan
// Jul 31, 2009 at 8:14 am
[...] Din wordpress in wordpress mu By valiciorgan Pas cu pas detalii cum sa mutati un blog wordpress pe un wordpress mu. http://welcome.totheinter.net/2008/10/04/how-to-migrate-from-wordpress-to-wordpress-mu/ [...]
41
CM
// Aug 6, 2009 at 11:26 am
Hey, when exporting the tables, am I exporting structure also, or just the content?? Also, in phpmyadmin, is there a way to export just the tables I want or do I wave to dump the whole data base and delete un-needed tables manually? Thanks for your help!
42
jcnjr
// Aug 7, 2009 at 10:13 pm
@CM Here are the WordPress database backup instructions I always follow. And yes, you can just select the tables you want to export instead of using “select all” and combing through the dump. Hope this helps.
43
Paul
// Aug 26, 2009 at 11:03 pm
Thanks for this very useful information.
Can you advise me if the process is the same if wanting to migrate 5 existing WP installs on subdomains to MU also?
thanks
44
Adam Wulf
// Aug 31, 2009 at 1:10 pm
Paul, yes this process should work for migrating any number of blogs into WPMU. The last step – where you update the author id – might be a little different if you’re migrating many blogs with different authors. In that case, you’d need to add a user for each author and update to that user’s id.
45
Paul
// Aug 31, 2009 at 8:16 pm
Thanks for the advice Adam. That’s good news.
I’ll give it a test.
46
Paul
// Sep 2, 2009 at 2:39 am
I have a problem substituting the author from my old blog posts.
I was the only author previously and therefore author ID = 1
my old table prefixes were: customprefix_
and I’ve changed them to: customprefix_{2}_
I’ve tried running the sql command:
UPDATE people_{2}_posts SET post_author = 1
I’ve tried the suggestion by T-Pain to remove the {} and still no joy. The sql error says that its a syntax error.
Do you have any ideas? Thanks in advance.
47
rush
// Sep 5, 2009 at 12:55 pm
i tried all the steps, though i didn’t get any errors..
My case was the same as above (as Paul)
On
UPDATE wp_{ID}_posts SET post_author = 1
which for me was wp_6_post SET post_author=1
returned… succesful .. but said no rows changed !!
Should that be the case ?
Oh BTW i don’t see the new user in my installation
!!!
48
rush
// Sep 5, 2009 at 1:03 pm
ooOps !!!
Embaraasing… It did work
Thank you so much.. !!
PS : It works well for migrating existing wordpress installation as a member BuddyPress blog too
49
Thomas
// Sep 8, 2009 at 10:51 pm
Adam, I have a serious mancrush on you, now. Just so you know.
50
Aajkaal
// Sep 28, 2009 at 1:41 pm
It worked except for the images. I moved the the /uploads directory to wp-content/blogs.dir/2/files. The image still does not show up.
Any ideas/suggestions ?
51
jcnjr
// Sep 28, 2009 at 2:36 pm
@aajkaal … You moved the files, but now need to update all the image links. Search your database and replace all instances of the old url pointing to the previous image directory to the new location. Worked for me. As always, backup, backup, backup. Hope this helps.
52
Aajkaal
// Sep 29, 2009 at 10:01 am
@jcnjr … Thanks. I replaced the domain name in the URL but the actual location has to be changed from http://www.abc.com/john/wp-content/uploads/ to http://www.abc.com/john/files for MU.
53
jcnjr
// Sep 29, 2009 at 12:25 pm
hmmm… sure it doesn’t need to be something like … http://www.abc.com/wp-content/blogs.dir/1/files/ … where “1″ is the id for the primary blog? At least that’s how it works on our subdomain setup.
Or, are you saying you got it to work? If so great!
54
Daniel
// Oct 22, 2009 at 8:25 pm
Thank you! Worked perfect!
55
Sushant
// Oct 24, 2009 at 11:49 am
Its nice to see you upgrading to MU at this stage. Its always good to be prepared big for the future. However the real ease of Wp-MU comes when you manage more than 10 blogs and a big list of authors.
56
Pauline
// Oct 25, 2009 at 6:54 pm
Nice tutorial, thanks
However, be careful on the 4th step when replacing “wp_” with “wp_{ID}_”, it also replaces some fields value like meta_key field in wp_*_postmeta and wp_*_usermeta tables. So you’ll probably have to use the following queries (examples with blog site 1) after the restoration:
UPDATE wp_1_postmeta SET meta_key = ‘_wp_1_attachment_metadata’ WHERE meta_key = ‘_wp_attachment_metadata’
UPDATE wp_1_usermeta SET meta_key = ‘_wp_1_attached_file’ WHERE meta_key = ‘_wp_attached_file’
and so on…
57
Prasad Thombre
// Oct 28, 2009 at 8:40 am
Really informative…
58
Rob
// Nov 11, 2009 at 8:02 am
Thanks for the post. Migrating data is such a bear and there aren’t enough detailed tutorials, like this one, to help you through it.
59
Alex
// Nov 11, 2009 at 1:24 pm
Thanks for this!! Very helpful!
60
BLoG kiTa
// Nov 11, 2009 at 9:46 pm
whoa.. very nice! In my country, sometimes we can download fully import xml from wordpress. And sometimes, it failed
61
Ray
// Nov 20, 2009 at 6:11 pm
This is in response to a comment I made a few months ago and to Andrea’s comment.
This is a big word of warning for those importing regular WP blogs via PHPMyAdmin / mySQL.
Watch out of WPMU’s wp_sitecategories table!
If you have a ton of categories and tags, WPMU will not detect these categories since you’re using the DB, you’ll run into problems when you need to add new categories or tags.
I used this method to import a regular WP blog over to WPMU and read what happened to me here:
http://mu.wordpress.org/forums/topic/15553
Best to use Ron’s Advanced Export plugin and re-import in the WordPress admin area.
62
Adam Milleneuve
// Nov 21, 2009 at 7:00 pm
Thank you so much for this – it’s really helped. and the useful tips in the columns
Edward – your tip really helped too
Thanks again
63
liron
// Nov 24, 2009 at 7:53 am
great post,
can i also move my installed plugins to my new MU
does the wordpress plugins are the same at MU ??
Styleffect
64
Neytri
// Dec 20, 2009 at 9:10 am
I have been planning to migrate my WP Blog site to WPMU but I am afraid will this hurt my SEO Credit? Please someone throw some light on the issue…
65
Hikari
// Jan 4, 2010 at 9:05 pm
Hello, how are you after more than 1 year of WPMU?
I’ve read it is more strict on HTML, removing ids and classes from elements.
What it worth it? Would you still do it now if you hadn’t? Do all plugins work fine??
I have 2 blogs and I plan on founding a new one. It would be much more scalable if I had them all together. It is already hard to keep 2 installations updated, 3 will be a nightmare!
66
Edward
// Jan 8, 2010 at 1:02 pm
It’s a little confusing, but if you have more than a couple WP sites I’d say it’s worth it. Just be wary of wordpress-mu/wp-includes/kses.php file, it restricts the tags allowed in your WP-mu sites. This file gets wiped each time you do a WP upgrade.
Specifically look at this section:
* Kses global for default allowable HTML tags.
67
Erick
// Jan 11, 2010 at 8:31 am
It saved my life! Thanks!
68
Hikari
// Jan 11, 2010 at 8:36 am
Well my theme overwrites
$allowedtagsIn WordPress I’m able to use anything in posts and in my comments, and also in comments that I edit, while visitors comments are filtered by
$allowedtags.About posts, it’s done by
wp_filter_post_kses(), which is called in some places ifif ( !current_user_can('unfiltered_html') )Does WP MU supports this rule too?
69
TheChrispy
// Jan 18, 2010 at 1:50 am
Beautiful! I have but one thing to add. If you store pictures locally, as WP defaults to doing, you need to change the URL of the pictures. The easiest way to do this is export the _posts SQL file and do a find and replace with the new link path.
70
stefan
// Jan 28, 2010 at 11:41 am
Amazing! Finally did it! Its worth noting my little nightmare though…
Basically i was getting various errors on the import such as;
CREATE TABLE `wp_1_comments` ( `comment_ID` bigint(20) unsigned NOT ‘ at line 1
…..
Documentation #1064 – bigint(20) unsigned NOT ‘ at line 1
The trick is to not have any of the various export options on such as the Auto increment in the STRUCTURE and the complete and extent inserts in the DATA options. Im not sure exactly which one was causing the problem but in hindsight you only need the tables required for the import and none of the fancy (perhaps useful in other circumstances) options on export. Hope this saves someone else some time!
Cheers again guys, even the comments were very useful!
71
marco
// Feb 6, 2010 at 5:40 pm
Is MU translated into Spanish? and is it able to use a plugin to make it bilingual? and switch back and forth? qtranslate has been a Godsend for us on the regular WP and not sure if I want to migrate until MU catches up.
72
miconian
// Feb 27, 2010 at 3:47 am
This is all well and good, but you also had a big database. I just migrated a small site from single-user to MU, and the import/export thing worked with a single PHP memory tweak.
Anyway, soon enough they’ll both be the same system anyway.
73
Kromcuich
// Mar 9, 2010 at 7:21 pm
hello. i have 5 wordpress blogs hosted on individual domains on my VPS. I have now installed the MU and would like to know how to migrate existing blogs to it, preserving their URLs. I can follow the instructions above, but do not understand how to preserve the original URL whilst deleting the old wordpress at the same time.
thanks in advance
kromcuich
74
jcnjr
// Mar 9, 2010 at 7:32 pm
@kromcuich Search for and read about the Domain Mapping WPMU plugin.
75
Serialu
// Mar 29, 2010 at 10:01 am
Да, не ожидал что увижу сдесь столько интересного в комментах.
76
Master Cho
// Apr 23, 2010 at 10:58 pm
Pauline makes a good point (but I think her solution is reversed?). Instead of the global replace, I did one for each of the 7 table names. e.g. %s/wp_comments/wp_3_comments/g
77
ComboShop
// Apr 30, 2010 at 12:56 pm
Thank a lot! This post is really help me to migrate my blog
78
Paul
// May 1, 2010 at 6:54 pm
I just did the export -> import thing to move from a WP2.9 to a WP3 (beta) with MU enabled. Worked like a charm.
79
sunil nair
// May 17, 2010 at 10:52 am
ya.. i like to move wordpress to wpmu. Thanks a lot dear.
80
Putu Swastawa
// Jun 2, 2010 at 5:55 am
Thanks dear. I want move to wpmu from normal wp. just i get your blog and i get helped.
81
Joe
// Jun 10, 2010 at 7:26 am
Thanks! Very helpful..
82
eDDi Hughes
// Jun 15, 2010 at 3:48 pm
This may need to be updated for WP 3.0 – I wanted to point out to the author that this shows up on Google search and a lot of people end up on it for information. Make sure to update or at least link to a new article for SEO purposes!
83
如何从WordPress迁移到WordPress MU « 不存在的空间
// Jul 7, 2010 at 6:17 am
[...] 在本地安装测试一下WordPress MU,才发现虽然它和WordPress同源,可是要从WordPress迁移到WordPress MU并不是一件容易事。后来从网上找到一篇英文博客描述了从WordPress向WordPress MU迁移的过程,准备结合自己的经验翻译一下并结合相关文章整理出来供大家参考。 [...]
84
Paul
// Jul 9, 2010 at 1:56 pm
This how-to was a big help. Thank you very much!
85
How to migrate from WordPress to WordPress MU | Wulf | WordPress Theme Mods
// Jul 13, 2010 at 9:39 am
[...] How to migrate from WordPress to WordPress MU | Wulf. [...]
Leave a Comment or