So, you're in the case where the xml display as text despite the fact that the correct header is sent :
- Code: Select all
Content-Type: text/xml; charset=UTF-8
It's no big deal, the sitemap is still valid, but you do not see the xml tree.
Then, about the 404, you just need to implement the module rewriterules in your .htaccess as explained in the install, this part does not change for phpBB2plus.
About the ftopic thing, the find was a bit unclear, you need to find :
- Code: Select all
$this->seo_static = array('cat' => 'cat',
'forum' => 'forum',
'topic' => 'topic',
and replace it with :
- Code: Select all
$this->seo_static = array('cat' => 'cat',
'forum' => 'forum',
'topic' => 'ftopic',
So far, the mod is working : -http://islamic.dk/v1/phpBB2/sitemap.php?forum=67
-http://islamic.dk/v1/phpBB2/sitemap.php?forum
but url are not rewritten as they should with the above code changes. Make sure you modded the google_forum.php file proper and clear the module's cache (you have a link in ACP) as well as your browser's one before you retry.
For pagination, too bad your forum is outputting so many pagination duplicate, but ho well, will still be good to display them in the sitemaps, we'll figure how after we'll have successfully dealt with regular ones
++