I installed the 0831 version of Forum. When the forum will appear: "The object name 'Moderators' invalid" exception. The specific solution is as follows: The main problem should appear in the stored procedure. There is a factory named forums_getforumsmoderators the storage process it as follows: CREATE pROCEDURE forums_GetForumModerators (@ForumID int) aS - get a list of forum moderators SELECT UserName, EmailNotification, DateCreated FROM Moderators (nolock) WHERE forumID = @ForumID OR forumID = 0GO given system is not find Moderators to this it should be changed to the stored procedure: CREATE pROCEDURE forums_GetForumModerators (@ForumID int) AS - get a list of forum moderators SELECT UserName, EmailNotification, forums_Moderators.DateCreated FROM forums_Moderators (nolock), forums_Users WHERE forumID = @ForumID OR Forum .Newtopworks.com This has not seen such an exception after changing it. I hope that my suggestion will bring you help. I hope you can often come to my forum. [:) ]
P.S. This article was posted at http://bbs.hidotNet.com/showpost.aspx?postid=2319#2319 and I Forum