And just now figured it out, some hard coded stuff is in the way. Seems when I moved directories, it still believes images are stored in that old location. Going to fix it as I get time today. At the office at the moment.
Update: Fixed. So, here's food for thought when moving a wordpress based site from a subdomain to somewhere else, apparently the URL addresses for media in the media library are stored in the mysql database you setup so they will always reflect the domain address at the time they were posted. Seems that data is stored in the wp_posts table of your wordpress database. The following mysql syntax will save you time in the event you have to move your page somewhere else.
- Code: Select all
UPDATE wp_posts SET guid = replace(guid, 'http://www.oldsiteaddress.com','http://www.newsiteaddress.com');
That should fix the media library urls so they point to the right place in your new domain location. I guess the site was affected for sometime since I had it all cached from before I moved it. Silly me for not catching that.