20080420 a little merger - plembo/onemoretech GitHub Wiki

title: A little merger link: https://onemoretech.wordpress.com/2008/04/20/a-little-merger/ author: lembobro description: post_id: 538 created: 2008/04/20 03:15:57 created_gmt: 2008/04/20 03:15:57 comment_status: open post_name: a-little-merger status: publish post_type: post

A little merger

After maintaining 3 separate blogs for a few years, first over at Blogger, and now here on my own hosted site, I decided it was time for some consolidation. The result is that my general technical blog, which used to be called onemoretech.lembobrothers.com has been merged into this blog — originally confined to LDAP-related matters. While I’ve still got to iron out some issues in the Categories indexes and undesired reformatting of some imported pages (no doubt intended to be “helpful”), by and large the process was pretty painless. All I did was use Wordpress’s built-in Export function to save out a specially formatted xml file and then import that into this blog using the corresponding Import function. To make things simple I also tarred up the uploads directory from onemoretech and then extracted the contents into the uploads directory for eldapo. That brought over all the images the posts from onemoretech linked to. Finally, I did a search for all occurrences of the onemoretech URL in all posts, and replaced them with the eldapo URL, using the following SQL:

`

UPDATE wp_posts SET post_content =
REPLACE(
post_content,
'onemoretech.lembobrothers.com',
'eldapo.lembobrothers.com', );

`

through my providers’ phpMyAdmin interface.

As I said, there’s still lots of cleanup to do with regard to Categories. Hopefully I’ll find some super-efficient way to fix those as well.

Copyright 2004-2019 Phil Lembo