site migration and file system paths
I have been creating a site for a local business on a volunteer basis, and now that I have migrated to production version, I am having some issues with file system paths. I am using drupal 6 with a multisite installation (shared code base). The main domain is orkaeko.com. The dev site is mkd.orkaeko.com and is in the path /sites/mkd.orkaeko.com. I copied this folder to minakamikarate.com and also copied the DB. After rebuilding permissions, etc. etc. everything works. However, the file system is still set to sites/mkd.orkaeko.com/files. When I change this to sites/minakamikarate.com/files, things get pretty messed up. For example templates/themes no longer work. I tried updating the file paths in the DB (for files, blocks, nodes, and node teasers) and even went so far as to use an editor to replace all mkd.orkaeko.com with minakamikarate.com, but it didn't help.
Does anyone have any suggestions for dealing with this?

try symlink
If you completely run into a wall and can't get the drupal system to repoint to the new files system, try using a symlink if you are on a linux.
MS
Sitedir_migrate
There's a module that I've used in the past called sitedir_migrate that looks like what you need to solve your issue. That module fixes most things, just not the settings within the actual theme, if I remember correctly. That's simple enough to fix from the UI though.
used sitedir_migrate, still experiencing problems
Hi,
I tried sitedir_migrate and everything went fine up until the point where I entered the new filepath (last step). At that point I have admin pages with no theme, and my non-admin pages are white with the word "grid" on them. Here is the error message I receive from drupal:
The selected file /tmp/filefYBd5D could not be uploaded, because the destination sites/minakamikarate.com/files/css/css_4f595776df7e9337f8810bdc59c261db.css is not properly configured.
I would appreciate any thoughts on what might be wrong.
Ouch
Well, that sounds like a fun error. Was that after you cleared your cache?
The only thing else I would guess there is permissions on the files directory of the new site.
Hi atb, If custom themes and
Hi atb,
If custom themes and modules are well made. You just have to follow 3 steps
filesSETfilepath= REPLACE(filepath, "files/", "sites/SITEDOMAIN/files/");(www-data is the webserver user on debian.)
If there are non-relative urls on the content and/or themes there's more work to do :(