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
 Minor Active Users 4.0 configuration problems
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

Steve D.
Average Member

USA
640 Posts

Posted - 16 April 2002 :  16:44:31  Show Profile  Visit Steve D.'s Homepage
Is there any way that the config option:
Show UserIP to Administrators
can be set to different levels of membership? It was like that in 3.5 I believe.

Also is there a way to hide the Admin from the Active User's page, but not allow Anonymous for anybody else?

I seem to remember in 3.5 Admin not showing up for guests on members?

Other than that I love the new changes, especially sorting out guests and registered users.

Very Cool!

----------------------------------------
Badges? We don't need no stinking badges

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 16 April 2002 :  17:23:31  Show Profile
quote:

Is there any way that the config option:
Show UserIP to Administrators
can be set to different levels of membership? It was like that in 3.5 I believe.


Not from the Admin panel...

quote:

Also is there a way to hide the Admin from the Active User's page, but not allow Anonymous for anybody else?

I seem to remember in 3.5 Admin not showing up for guests on members?


Same answer as before.

-------------------------------------------------
Installation Guide | Do's and Dont's | MODs


Edited by - ruirib on 16 April 2002 17:25:02
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 16 April 2002 :  18:18:42  Show Profile  Visit Steve D.'s Homepage
Doh!!!! Oh well, I'll have to live without it for now.

----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 16 April 2002 :  19:51:48  Show Profile  Visit Nathan's Homepage
quote:
Is there any way that the config option:
Show UserIP to Administrators
can be set to different levels of membership? It was like that in 3.5 I believe.


Only admins and mods could see IP in version 3.5

I do not recomend overriding that, showing IPs to users will likely make some users very mad because it would potentially be a securty threat to their computer.

Nathan Bales
Snitz Exchange | Do's and Dont's
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 16 April 2002 :  20:00:42  Show Profile  Visit Steve D.'s Homepage
quote:


Only admins and mods could see IP in version 3.5


That's actually what I meant. Is that still possible?

----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 16 April 2002 :  21:19:56  Show Profile  Visit Nathan's Homepage
Sure, open up active_users.asp and change this

bolAUIP= chkAUPermissions(strAUIP)

to this

bolAUIP= chkAUPermissions("2")

Nathan Bales
Snitz Exchange | Do's and Dont's

Edited by - Nathan on 16 April 2002 21:20:12
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 16 April 2002 :  21:38:59  Show Profile  Visit Steve D.'s Homepage
Thanks so much! Again nice work on this improved mod!

----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 16 April 2002 :  22:15:52  Show Profile  Visit Nathan's Homepage
Your welcome

Nathan Bales
Snitz Exchange | Do's and Dont's
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 17 April 2002 :  09:46:48  Show Profile  Visit Steve D.'s Homepage
OK one last question.

When I'm looking at the Active Users page some of the Current Pages are showing as "Invalid Location"

What does that mean?

----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 17 April 2002 :  10:03:17  Show Profile  Visit Nathan's Homepage
It means that the person is either looking at forum.asp, topic.asp, or post.asp but the TOPIC_ID or FORUM_ID in their querystring does not exisit in the database. This will happen when - topics get moved - topics get deleted - users are playing around by changing the querystrings by hand

Nathan Bales
Snitz Exchange | Do's and Dont's
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 19 April 2002 :  12:06:49  Show Profile  Visit Steve D.'s Homepage
quote:

It means that the person is either looking at forum.asp, topic.asp, or post.asp but the TOPIC_ID or FORUM_ID in their querystring does not exisit in the database. This will happen when - topics get moved - topics get deleted - users are playing around by changing the querystrings by hand


I was just looking at what causes the problem a little bit more.

So I logged in with one browser and went to Active Users.
In another browser I logged on as a guest and moved through the forum.

When I was on Default.asp, it came up as Forums. Cool.
When I went in to a forum it came up as "Viewing Topics in:
Topic Name BLAH BLAH" Cool.
When I went in to a topic it came up as "Viewing Topic: Topic Name Blah Blah" Cool.
If that topic was a multi page topic and I went to a second page it came up as "Invalid Location"

So it appears as though it gives that error also for Multi-Page topics if you aren't on the first page.


----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 19 April 2002 :  12:07:58  Show Profile  Visit Steve D.'s Homepage
Also noticed it now logs will display more than 1 user per IP address, I like that!

----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 19 April 2002 :  20:41:26  Show Profile  Visit Nathan's Homepage
Yeah, theres a little bug there.

Open up active_users.asp and change both instances of

instr(lcase(fQuery), "archive")

to this:

analyzeQuery(strQuery, "ARCHIVEVIEW") = "True"



Not a critical bug, it'll be fixed next time I add a language pack to the zip

Nathan Bales
Snitz Exchange | Do's and Dont's
Go to Top of Page

Steve D.
Average Member

USA
640 Posts

Posted - 20 April 2002 :  12:03:32  Show Profile  Visit Steve D.'s Homepage
Excellent! Thanks alot.

----------------------------------------
Badges? We don't need no stinking badges
Go to Top of Page

crash
Advanced Member

Netherlands
2064 Posts

Posted - 20 April 2002 :  18:31:00  Show Profile  Visit crash's Homepage
nathan, just for the record, there are three instances that need to be changed...



Crash's Site | Crash is from
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 20 April 2002 :  18:35:24  Show Profile  Visit Nathan's Homepage
Thanks crash, there are three. Guess I didn't consider the third because it had no affect on the bug in question.

Nathan Bales
Snitz Exchange | Do's and Dont's
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 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 1.27 seconds. Powered By: Snitz Forums 2000 Version 3.4.07