rev_greg
Starting Member
USA
47 Posts |
Posted - 08 April 2002 : 01:42:56
|
Ok for the longest time I could not see the browser and os type of my users. I have active users 3.5 and the whoisinside mod. There are a couple of changes that need to be made.
I am not sure about line numbers, just look for the text below and add the items in red. Make sure you have all the proper punctuation.
'STORE THE INFORMATION IN DATABASE if rsWho.eof or rsWho.bof then on error resume next if strOnlineUser = "Guest" then '##### Modified for Mod WhoIsInside - 11172001 strSql = "INSERT INTO " & strTablePrefix & "ONLINE (UserID,UserIP,DateCreated,CheckedIn,LastChecked,M_BROWSE,insFORUMID,insTOPICID,SystemOS,BrowserTYPE) VALUES ('" strSql = strSQL & strOnlineUser & "','" & strOnlineUserIP & "','" & strOnlineDate & "','" & strOnlineCheckInTime & "','" & strOnlineCheckInTime & "','" & strOnlineLocation & "','" & iOnlineForumID & "','" & iOnlineTopicID & "','" & strSystem & "','" & strBrowser & "')" '##### Mod WhoIsInside - 11172001
And then look for the following text and add the items in red.
' THEY ARE A NEW USER SO INSERT THEIR USERNAME '##### Modified for Mod WhoIsInside - 11172001 strSql = "INSERT INTO " & strTablePrefix & "ONLINE (UserID,UserIP,DateCreated,CheckedIn,LastChecked,M_BROWSE,insFORUMID,insTOPICID,SystemOS,BrowserTYPE) VALUES ('" strSql = strSQL & strOnlineUser & "','" & strOnlineUserIP & "','" & strOnlineDate & "','" & strOnlineCheckInTime & "','" & strOnlineCheckInTime & "','" & strOnlineLocation & "','" & iOnlineForumID & "','" & iOnlineTopicID & "','" & strSystem & "','" & strBrowser & "')" '##### Mod WhoIsInside - 11172001
That should fix it so that you can see the browser type and OS type with whoisinside installed.
Edited by - rev_greg on 08 April 2002 01:46:02 |
|