Right now, at line# 475, post_info.asp, there is
strSql = Strsql & " FROM " & strTablePrefix & "TOPICS "
This results in a error of the type
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
The fix is simple: replace strTablePrefix by strActivePrefix
strSql = Strsql & " FROM " & strActivePrefix & "TOPICS "
<