Moving wordpress becomes tricky if the absolute URL of the root of the installation changes.
You might be able to get the reluctant sites working again by adding the following lines at the bottom of <ROOT>/wp-config.php for each site:
define('RELOCATE',true);
define('WP_HOME','http://path.to/newurl');
define('WP_SITEURL','http://path.to/newurl');
However, I had trouble the *second* time I moved the same wordpress site using the wp-config.php method shown above, and decided I needed to update the paths inside the database.
Since the paths are stored in the database as "serialized strings" (a string value follwed by the length of the string), I had a hard time finding a tool that would rename the strings but keep the site working properly. If I ran a mysql update to change the paths within blog posts, the length parameter also needed to be updated.
Eventually I found (and now use) David Coveney's 'F&R Database' script when moving Wordpress from place to place (to make a backup site for experimentation, for example):
http://ringzer0devel.wordpress.com/2011/03/11/find-and-replace-in-mysql-database/His post is a bit cryptic; here's how I ended up using it:
md ~/scripts
cd ~/scripts
<copy and paste the code from the above blog post into 'db-fr.php'>
<open the resulting file and clean up the duplicate code block in lines 124-132>
md include
cd include
<copy and paste the code from http://ringzer0devel.wordpress.com/2011/03/10/too-good-for-bash-love-php-read-on/ into 'commandline.class.php'>
Once setup, you can do global search/replace on your wordpress databases using:
OLDURL=some.path
NEWURL=path.to/newurl
DBNAME=somedb
DBUSER=someuser
DBPASS=somepasswd
/root/scripts/db-fr.php --find="$OLDURL" --replace-with="$NEWURL" --db-name="$DBNAME" --db-user="$DBUSER" --db-pass="$DBPASS" --verbose
Finally, make sure that the contents of <ROOT>/.htaccess make sense (don't include anything specific to the old blog location).
I have a script I've written to clone a wordpress installation into an i-bay (for backup purposes, mostly) - if that sounds useful I'll post it somewhere for you.