Print Page | Close Window

Disable member list for new registers?

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=2207
Printed Date: 31 March 2026 at 11:59am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Disable member list for new registers?
Posted By: willv
Subject: Disable member list for new registers?
Date Posted: 27 April 2003 at 1:26pm

Hello

I have read through all docs but have not found how to prevent new members from pulling up the membership list - I would like to block new members from seeing the list before I place them into full membership status - can anyone suggest an idea for this?  I have blocked access to all forums until approval is received but the membership list still comes up

related to this - is there a way to have new members signup and admin check them out before giving full status? the best way I have come up with is to put everyone into guest status and block all their permissions -

thanks in advance for your help.

 




Replies:
Posted By: Atlantis
Date Posted: 28 April 2003 at 4:41am

members.asp

Do this to prevent hacker guest
to get into members listing.

AFTER Response.Buffer = True write this 3 lines of code.

If lngLoggedInUserID = 2 Then
Response.Redirect("default.asp")
end if
---------
in navigation_buttons_inc.asp
if you NOT want to show link for Guest.
<%If lngLoggedInUserID <> 2 Then%><a href='members.asp?FID=<%=intForumID%>' target='_self' class='nav'><img src='<%=strImagePath%>members_list.gif' border='0' align='absmiddle' alt='<%=strTxtMembersList%>'><%=strTxtMemberlist%></a><%end if%>

or if you want to show image but link to first page to guest
<%If lngLoggedInUserID <> 2 Then%><a href='members.asp?FID=<%=intForumID%>' target='_self' class='nav'><img src='<%=strImagePath%>members_list.gif' border='0' align='absmiddle' alt='<%=strTxtMembersList%>'><%=strTxtMemberlist%></a><%else%><a href='default.asp' target='_self' class='nav'><img src='<%=strImagePath%>members_list.gif' border='0' align='absmiddle' alt='<%=strTxtMembersList%>'><%=strTxtMemberlist%></a><%end if%>

and I use the above (If lngLoggedInUserID....) in 1 line of code.

/Atlantis



Posted By: willv
Date Posted: 29 April 2003 at 10:21am

ok thanks very much

The first one worked fine and was easy.

Thanks again.




Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net