
Needed a Quick Way to Copy a Database from one Server to Another
This module worked great to migrate my website from one server to another. But I did have a couple of problems
1)The 6.x-2.0 version that I downloaded was missing some files so I downloaded the .dev version and copy the missing files over
2) I use lighttpd for my web server and got an error message saying that I had to limit accesses to the sites/default/backup_migrate directories. I fixes this by putting the following lines in my lighttpd.conf file.
$HTTP["url"] =~ "^/sites/default/files/backup_migrate/" {
url.access-deny = ( "" )
}
Review by laprjns [info] on December 6, 2009 - 17:30