Author |
Topic  |
|
bdittus
Starting Member
USA
7 Posts |
Posted - 11 February 2006 : 12:05:11
|
All
I have implimented Snitz 2000 with the lates version on our web site, once the permission issues were resolved with the server administrator, all is well.
Now, I would like to set this up so anyone can view everything, but ONLY registered users can post just as you have it hear, but with a provision the members must be approved before postings can be available to everyone.
It probably already is a feature I have overlooked, but wanted clarification on. |
|
OneWayMule
Dev. Team Member & Support Moderator
    
Austria
4969 Posts |
Posted - 11 February 2006 : 12:31:46
|
quote: so anyone can view everything, but ONLY registered users can post
Set Require Registration to Off in Admin Section -> Main Forum Configuration to allow all users to browse the forums (member list and user profiles are not viewable by unregistered users, you'd have to change that in the code).
quote: but with a provision the members must be approved before postings can be available to everyone
Do you want that members need to be approved after registration to enable them to post or approve members' posts before they are visible?
Turn on Restrict Registration in Admin Options -> Email Server Configuration (you'll have to enable Email Mode and Email Validation as well for this) so members need to be approved before they can post.
If you want to add the possibility to approve member posts: First turn on Allow Topic Moderation in Admin Options -> Feature Configuration. Now when you edit a certain forum you can choose the following options from a Moderation dropdown box: All Posts Moderated, Original Posts Only Moderated, Replies Only Moderated. |
My MODs: Birthdays - Custom Policy - F.A.Q. Administration - Forum Rules - Guestbook Links Manager - MyOwnGoogle - Profile Views - Search Log - WebSearch
Useful stuff: Forum and MOD Installation - MOD Installation Guide - Snitz v3.4.05 Readme - Free ASP Hosts - Support Snitz
|
 |
|
bdittus
Starting Member
USA
7 Posts |
Posted - 11 February 2006 : 13:30:29
|
Clarification
We want ANYONE to be able to view the forum, but will only be able to post to it, if they are approved as a member of our group.
Similar to the way this forum functions.
The only difference, we do not wish to enable the email function at this time. |
 |
|
OneWayMule
Dev. Team Member & Support Moderator
    
Austria
4969 Posts |
|
bdittus
Starting Member
USA
7 Posts |
Posted - 11 February 2006 : 15:28:00
|
Thank you for your feedback, it worked!
Now one last stupid question (I'm sorry if it's obvious).
How do I make the forum open to the Change Category Group, "All Catagories you have access to" selection, instead of opening to the login in page?
Everything else seems to work just like we want. |
 |
|
OneWayMule
Dev. Team Member & Support Moderator
    
Austria
4969 Posts |
|
bdittus
Starting Member
USA
7 Posts |
Posted - 11 February 2006 : 15:39:57
|
Thank you for the quick reply, I did set it this way. I double checked it to make sure.
If you open the forum it defaults to the login screen, you can clcik on the drop down menu labeled "All Forums" and it does go to the page "all forums".
But it still defaults to the login screen first????? |
 |
|
bdittus
Starting Member
USA
7 Posts |
Posted - 11 February 2006 : 17:45:54
|
I fixed issue myself, thanks again for your help. |
 |
|
jh48
Starting Member
3 Posts |
Posted - 22 May 2006 : 11:34:28
|
I implemented a Snitz Forum for a school district, and the teachers would like their profiles viewable by students and unregistered users.
quote: (member list and user profiles are not viewable by unregistered users, you'd have to change that in the code).
Could someone point me to where I can edit the code to allow for public profiles?
Thank you.
jh48
|
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 22 May 2006 : 15:07:33
|
without the code in front of me, I believe its members.asp... |
 |
|
jh48
Starting Member
3 Posts |
Posted - 23 May 2006 : 13:46:19
|
I suppose I should have been more specific .
What in the code would I have to change to make profiles public.
Thank you.
JH48 |
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 24 May 2006 : 08:31:41
|
Around line 39ish you should see:
if strDBNTUserName = "" then . . . . Call WriteFooter Response.End end if --> should be about line 54, though I'm not using a stock install...
If you comment out that entire If statement, it should allow anybody see your members list.
Just keep in mind, everybody's profile will be viewable by all visitors. |
 |
|
jh48
Starting Member
3 Posts |
Posted - 30 May 2006 : 12:14:09
|
quote: if strDBNTUserName = "" then . . . . Call WriteFooter Response.End end if --> should be about line 54, though I'm not using a stock install...
Well, I commented that segment out and it still gives me the error message. I even tried to remove it completely, and I got the same result.
I'm going to keep plugging around in members.asp. I'm sure I'll find it.
Thanks for all the help,
JH48 |
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 30 May 2006 : 12:21:04
|
I went back and tested it again. Lines 41-57 in members.asp (assuming a clean install) the entire If -Then block needs to be commented out.
Soif strDBNTUserName = "" then
Err_Msg = "<li>You must be logged in to view the Members List</li>"
Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
" " & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""default.asp"">All Forums</a><br />" & vbNewLine & _
" " & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " Member Information</font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
" <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strHeaderFontSize & """ color=""" & strHiLiteFontColor & """>There Was A Problem!</font></p>" & vbNewLine & _
" <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHiLiteFontColor & """>You must be logged in to view this page</font></p>" & vbNewLine & _
" <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""JavaScript:history.go(-1)"">Back to Forum</a></font></p>" & vbNewLine & _
" <br />" & vbNewLine
WriteFooter
Response.End
end if
Becomes'if strDBNTUserName = "" then
' Err_Msg = "<li>You must be logged in to view the Members List</li>"
'
' Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _
' " <tr>" & vbNewLine & _
' " <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
' " " & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""default.asp"">All Forums</a><br />" & vbNewLine & _
' " " & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " Member Information</font></td>" & vbNewLine & _
' " </tr>" & vbNewLine & _
' " </table>" & vbNewLine & _
' " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strHeaderFontSize & """ color=""" & strHiLiteFontColor & """>There Was A Problem!</font></p>" & vbNewLine & _
' " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHiLiteFontColor & """>You must be logged in to view this page</font></p>" & vbNewLine & _
' " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""JavaScript:history.go(-1)"">Back to Forum</a></font></p>" & vbNewLine & _
' " <br />" & vbNewLine
' WriteFooter
' Response.End
'end if |
 |
|
|
Topic  |
|