nevermind. Actually, I forgot...I did have to modify some files to include:
Response.Cookies.Item( strCookieName ).Path = "/"
Response.Cookies.Item( strCookieName ).Domain = Request.ServerVariables( "HTTP_HOST" )
so login user has this:
login_user.asp wrote:
'Write a cookie with the User ID number so the user logged in throughout the forum 'Write the cookie with the name Forum containing the value UserID number Response.Cookies(strCookieName)("UID") = strUserCode Response.Cookies.Item( strCookieName ).Path = "/" Response.Cookies.Item( strCookieName ).Domain = Request.ServerVariables( "HTTP_HOST" ) If CBool(Request.Form("ActiveUsers")) = False Then |
and logout_user says:
log_off_user.asp wrote:
'Clear the forum cookie on the users system so the user is no longer logged in Response.Cookies(strCookieName) = "" Response.Cookies.Item( strCookieName ).Path = "/" Response.Cookies.Item( strCookieName ).Domain = Request.ServerVariables( "HTTP_HOST" ) Response.Cookies(strCookieName)("UID") = strLoggedInUsername & "LOGGED-OFF" Response.Cookies("TS") = "" Response.Cookies("LPM") = "" Session("ViRead") = "" |
Without this modification, the boards won't work on my server. I thought this was a bug that was going to be fixed back in 7.5.