Hi
I'm running v3.1SR 4 and I have my forum on a server in NT Domain. I have autologin eneabled and that works fine, but now I've added access to a trusted w2k3 domain and when users from that domain tries to access the forum I get some error with the authentication. The errormessage I get is error '80005004' in /forum/inc_functions.asp, line 1299.
The code around there is:
if strAutoLogon="1" then
strNTUserFullName = Session(strCookieURL & "strNTUserFullName")
if Session(strCookieURL & "strNTUserFullName") = "" then
Set strNTUserInfo = GetObject("WinNT://"+strNTUser)
strNTUserFullName=strNTUserInfo.FullName
Session(strCookieURL & "strNTUserFullName") = strNTUserFullName
end if
end if
Line 1299 refers to
"Set strNTUserInfo = GetObject("WinNT://"+strNTUser)"
Does anyone know how to update / change this sub to enable two different domains?