I had a problem the same as "Anime" in the other Active Users thread.
The options in the Administrative options for the Active users were not being set...I found the problem to be that the script were trying to update the values in the table but they didn't exist, so once I added the variables to the FORUM_CONFIG_NEW table the Active users administration page was able to update them.
Also from the pop-profile.asp, the user could not update the Anonymous status...I found this to be an error in the pop-profile.asp...the UPDATE statement did not include the M_AUHIDE setting. I added the following code and it worked.
around line 952 you will find the code:
if strQuote = "1" then
strSql = strSql & ", M_QUOTE = '" & ChkString(Request.Form("Quote"),"message") & "'"
end if
strSql = strSql & " WHERE M_NAME = '" & ChkString(Request.Form("Name"), "SQLString") & "' "
if strAuthType = "db" then
strSql = strSql & " AND M_PASSWORD = '" & ChkString(Request.Form("Password-d"), "SQLString") & "'"
end if
I changed it to:
if strQuote = "1" then
strSql = strSql & ", M_QUOTE = '" & ChkString(Request.Form("Quote"),"message") & "'"
end if
if strAlowAUAnon = "1" then
strSql = strSql & ", M_AUHIDE = '" & ChkString(Request.Form("AUHIDE"),"message") & "'"
end if
strSql = strSql & " WHERE M_NAME = '" & ChkString(Request.Form("Name"), "SQLString") & "' "
if strAuthType = "db" then
strSql = strSql & " AND M_PASSWORD = '" & ChkString(Request.Form("Password-d"), "SQLString") & "'"
end if
P.S. Great Mod
http://www.cbr250.com/forum
Edited by - rhaddon on 05 April 2002 06:52:59