Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 Active Users/Whosinside behind a firewall.
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

rev_greg
Starting Member

USA
47 Posts

Posted - 02 April 2002 :  20:07:57  Show Profile  Visit rev_greg's Homepage  Send rev_greg an AOL message  Send rev_greg an ICQ Message
My Windows 2000 server sits behind a linux firewall/proxy. The linux box receives the http requests and then proxies them to the W2K box. Because of this, Active Users and Who's Inside only ever see one person. I see only myself as online, and my users only see themselves. Even though there might be 10 or 12 logged in at the same time.

Are there any modifications that can be made to the mods so that they don't rely on IP addresses?

Thank you,
Rev. Greg

Nathan
Help Moderator

USA
7664 Posts

Posted - 02 April 2002 :  20:18:11  Show Profile  Visit Nathan's Homepage
I have an incomplete active users mod that does members by memberID and guests by IP (So you would only ever see one guest)

Its not done yet, I hope to release it for beta-testing either tonight or tomarrow morning.

  Nathan Bales - Romans 15:13
----------------------------------

Snitz Exchange | Do's and Dont's


Edited by - Nathan on 02 April 2002 20:23:05
Go to Top of Page

rev_greg
Starting Member

USA
47 Posts

Posted - 02 April 2002 :  20:29:20  Show Profile  Visit rev_greg's Homepage  Send rev_greg an AOL message  Send rev_greg an ICQ Message
Add me on your beta tester list. I will never put my Windows box on the frontline to make it vulnerable to the internet so I definitely need a fix like that.

Yer awesome man



Go to Top of Page

rhaddon
Starting Member

Ireland
8 Posts

Posted - 05 April 2002 :  06:52:27  Show Profile  Visit rhaddon's Homepage
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
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.36 seconds. Powered By: Snitz Forums 2000 Version 3.4.07