I have a WP site on a subdomain at my sandbox site. I purchased a domain name and I would like to use this to access the site. My domain name is with Godaddy and my site is located at a third party remote host.
-
Turned on forwarding and masking at Godaddy.
-
Updated all the WP tables in my WP site with the new URI.
- I used PHPMyAdmin to export the sql tables.
- Opened the dump in my favorite text editor and replaced the domain name only.
- Dumped the existing tables in PHPMyAdmin
- Imported the new edited tables.
Now the site loads content on the home page using the new URI, but the styles are all botched. If I look at the source of the home page, I get this which shows the OLD URI.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>[NEW URI]</title>
</head>
<frameset rows="100%,*" border="0">
<frame src="[OLD URI]" frameborder="0" />
<frame frameborder="0" noresize />
</frameset>
<!-- pageok -->
<!-- 02 -->
<!-- -->
</html>
But if I do a search in the tables in PHPMyAdmin no table contains the old URI. I deleted the cache, but still no go.
What did I forget to change?