These are some protections that can allow On Error Goto 0 to work in the post.asp file.
Line 921: Add if condition to prevent "FORUM_ID=" sql error.
if (strRqForumID <> "") then
strSql = strSql & " WHERE " & strTablePrefix & "ALLOWED_MEMBERS.FORUM_ID = " & strRqForumID
end if
Line 957: Add if condition to prevent BOF or EOF error on MoveFirst.
if (not rsAllowedMember.EOF and rsAllowedMember.BOF) then
rsAllowedMember.movefirst
end if