Can someone tell me how and where to edit the script to have the address to my gallery on the old server open to the address to the gallery on my new domain/server?
Use any type of redirection you could think of - not related to coppermine.
Different aspects of redirecting are discussed on many pages on the internet, e.g. http://www.tamingthebeast.net/articles3/spiders-301-redirect.htm
Thank you, I was hoping there was a just script somewhere I could just change the address in.
The page I refered to in fact offers you several easy methods - it doesn't get easier than that. If you prefer PHP, you could use this:<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://your-new-domain.tld");
exit;
?>
. If you're keen to edit a Coppermine file (making things complicated), just add above code to index.php (at the very top) if you prefer.
Thank you guys for the help here, I was lnot able to get the script to work, however, my host had a redirect in my control panel. ::)