Blogger To WordPress
11 January 2006I decided to switch from Blogger to Wordpress. However, I wanted to bring all my content with me. I found a way to import all your Blogger content to WordPress.
To do this I followed the instructions here:
http://catsutorials.catsudon.org/?p=15
Now, if you’re using a version of WordPress before version 2.0, then you’ll be okay. However, if you’re currently using WordPress 2.0, then you will need to modify the import-blogger.php file and replace it with this code:
INSERT INTO $wpdb–>users (
user_login,
user_pass,
user_nicename,
user_email,
user_url,
user_registered
) VALUES (
‘$user_login’,
‘$pass1′,
‘$user_nickname’,
‘$user_email’,
‘$user_url’,
‘$user_joindate’
)”);
After making this change, you can press the OK button and proceed with the import. It should work well from that point on.
If you didn’t make that code change, you’ll probably see an error that looks something like this:
WordPress database error: [Unknown column ‘user_nickname’ in ‘field list’]
INSERT INTO wp_users ( user_login, user_pass, user_nickname, user_email, user_url, user_ip, user_domain, user_browser, user_registered, user_level, user_idmode ) VALUES ( ‘Greg’, ‘password’, ‘Greg’, ‘user@wordpress.org’, ”, ‘127.0.0.1′, ‘localhost’, ’server’, ‘1979-06-06 00:41:00′, ‘1′, ‘nickname’ )
: Registered user Greg
Good luck!
|
|
Leave a Reply
Thanks For Visiting!