Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Odd sub-domain + bbPress problem

Your database is still storing variables pointing to talkspirit.letsdoo.org… so your header area is still pointing to talkspirit URL’s.

Check out this call to your css file:

<link rel=”stylesheet” href=”http://talkspirit.letsdoo.org/my-templates/bbVanilla/style.css&#8221; type=”text/css” />

Here’s the code that generates that (in my header.php at least):

<link rel=”stylesheet” href=”<?php bb_stylesheet_uri(); ?>” type=”text/css” />

You should be able to fix this using phpmyadmin. Try running this query to find the row you need to change:

SELECT * FROM bb_topicmeta WHERE meta_key=’uri’

Then edit the row so that the meta_value for that row is the url for your new site…

Skip to toolbar