Quote:
Originally Posted by Carnage-
just looked at http://www.iphonemodding.com/forum/c...h-Make-It-Work (the thread you screenshotted) in my browser (FF3.6.7, winxp) I can view the comments fine.
I think I may be close to finding the source of the other problems with this mod; I went into the source code and compared it side by side with vb 4.0.3 Where once there was this:
Code:
vb_Search_Indexcontroller_Queue::indexQueue('vBForum', 'Post', 'index', $msgid);
There is now this:
Code:
if (isset($vbulletin->options['vbcmsforumid']) AND $foruminfo['forumid'] == $vbulletin->options['vbcmsforumid'])
{
vb_Search_Indexcontroller_Queue::indexQueue('vBCms', 'CmsComment', 'index', $msgid);
}
else
{
vb_Search_Indexcontroller_Queue::indexQueue('vBForum', 'Post', 'index', $msgid);
}
It seems that there is an intention to separate forum posts and CMS comments even further as they are now different content types. I'm sure that this is the root of the issues with this mod, however I've yet to figure out what its doing to cause them. 
|
This bug is affecting me too.
One plugin for this ("clear cache") is setting the vbcmsforumid to the id of the current forum, so that check you quoted thinks that this is the cms forum and that the comment should be indexed as a comment rather than post.
Haven't found a fix yet though. I just disabled the "clear cache" plugin, not sure what that will cause but it's better than having no posts indexed.