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: General / Current Version (Old)
 hidding email address
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

NickyW
Starting Member

2 Posts

Posted - 23 October 2001 :  08:04:58  Show Profile
Hi,
I have just installed the snitz forum on my website and have 2 questions.
1)Is there anyway to customize the forum so that members email addresses are not viewable?
2) For some reason on my forum the only person who can be made a moderator is the admin account, why can't I make other users moderators of forums?
Thanks,
Nicky

Rigger82
Junior Member

USA
311 Posts

Posted - 24 October 2001 :  15:56:06  Show Profile  Visit Rigger82's Homepage  Send Rigger82 an AOL message  Send Rigger82 a Yahoo! Message
First, you can disable the visual email issue by commenting out those lines that display it in the profile and the email popup files. There are some mods out there for it but a few seconds and you can easily hide them ... I did the same thing after an idiot kept harvesting them and emailing really bizzare stuff to an ever growing group.

Functions still work so you can still send email but its just not shown to everyone.

As for the second part... go into the persons PROFILE and change the dropdown (lower right) to MODERATOR and then when you go to the moderator admin screen, you'll see all available members with moderator or admin status.

Hope this helps.

---------------------
Mark Christianson
Gulf War Veteran (82nd Airborne Division)
Owner/Operator of www.paratrooper.net
Rigger@paratrooper.net
Go to Top of Page

NickyW
Starting Member

2 Posts

Posted - 29 October 2001 :  05:28:10  Show Profile
Thanks for your help.

Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 29 October 2001 :  07:16:44  Show Profile
quote:

First, you can disable the visual email issue by commenting out those lines that display it in the profile and the email popup files. There are some mods out there for it but a few seconds and you can easily hide them ... I did the same thing after an idiot kept harvesting them and emailing really bizzare stuff to an ever growing group.



The hide e-mail mod is made to give your members the choice of hiding or showing their e-mail address. At first I removed the e-mail address from both the profile and pop_mail.asp but found that it was annoying because people kept asking where they should send e-mails that were meant only for me. And people had to place their e-mail address somewhere else (like in their bio) if they did want their e-mail address shown.
After getting the hide e-mail mod working some members have decided to hide their address and other (me included) have left it shown. Easy communication.

You can download the hide e-mail mod here:
http://www.frutzle.com/snitz/HideE-MailAddressMODv3.3.zip

I did not make this mod and unfortunately I'm not sure who DID make it. I will however help you should you need any help.

Roland

Go to Top of Page

heptite
Average Member

USA
547 Posts

Posted - 29 October 2001 :  09:04:11  Show Profile  Visit heptite's Homepage  Send heptite an ICQ Message  Send heptite a Yahoo! Message
The Hide Email mod was done by Richard Kinser.

I've put up a few of his mods as well as some of Davio's and Da_Stimulator at:

http://www.snitz.info

Sue

Additional support files - http://www.snitz.info
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 29 October 2001 :  11:43:00  Show Profile
quote:

The Hide Email mod was done by Richard Kinser.

I've put up a few of his mods as well as some of Davio's and Da_Stimulator at:

http://www.snitz.info

Sue

Additional support files - http://www.snitz.info



Thanks Sue, now I know where to send people too

Roland

Go to Top of Page

danhayes
Starting Member

19 Posts

Posted - 29 October 2001 :  14:50:33  Show Profile
Hi folks,
I'm a newer member and I have been testing the Snitz board for a few days now. I have a board up and running using my Personal Web Server for testing.

I would like to install the email mod. I downloaded it to my desktop but I have a question. Should I just unzip the 5 files to my folder with all of the other files? Do I have to change any settings in the "Admin options" area?

I did not see a "readme" file in the email mod that I downloaded, so I am asking these questions.

cheers
Dan

Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 29 October 2001 :  15:05:01  Show Profile
What you should do is perform a search for "hide" in those files and copy & paste the modified code into your current files. Open both your current file and the file from the ZIP and compare the code so you won't copy & paste any code you don't need to. You'll get all code needed that way.

Please, do make a backup of the files you're going to edit before you edit them just in case something goes wrong.

Roland


http://www.frutzle.com
Go to Top of Page

TimSinnott
Starting Member

USA
16 Posts

Posted - 01 December 2001 :  21:00:03  Show Profile
I downloaded the "Hide Email Address v.33 - Richard Kinser" mod, then I searched for occurences of "hide" in those 5 files. For a beginner like myself it's overwhelming to try to detect the differences.

Only last week I initially downloaded the Snitz Forums 2000 version 3.3.03, which is my base because I'm just starting with Snitz. Would it be feasible to simply substitute the 5 files in the mod into my Snitz 3.3.03? Or is that asking for trouble?

Any advice will be appreciated.

Tim Sinnott
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 02 December 2001 :  06:23:25  Show Profile
You can try doing that, but still do make a backup of the files you're going to replace (just in case).

Do remember that once you've installed one MOD, you will have to copy and paste the next MOD into your files. So replacing your files only works once.

Roland

- here to help when possible -

http://www.frutzle.com
Go to Top of Page

DAVEinAZ
Starting Member

USA
16 Posts

Posted - 02 December 2001 :  14:23:19  Show Profile
Not sure if I did it the lazy way or the hard way , but I made the following changes to a clean install. Email addresses are hidden, but members are still emailable.

pop_profile.asp (replace email address with email icon)

LINE 173 before :

<td bgColor=<% =strPopUpTableColor %>><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"> <a href="JavaScript:openWindow('pop_mail.asp?id=<% =rs("MEMBER_ID") %>')"><% =ChkString(rs("M_EMAIL"), "display") %></a> </font></td>


LINE 173 after :

<td bgColor=<% =strPopUpTableColor %>><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"> <a href="JavaScript:openWindow('pop_mail.asp?id=<% =rs("MEMBER_ID") %>')"><img border="0" src="icon_email.gif"></a> </font></td>



pop_mail.asp (hide address)

DELETED LINES 174-177

Then added LINE 173 as :

<input type=hidden name="Email" value="<% =rs("M_EMAIL") %>">


Haven't had any problems with it yet...

dave
http://www.mediaslice.com/usathome

Go to Top of Page

Fanaddict
Starting Member

2 Posts

Posted - 02 December 2001 :  18:46:32  Show Profile  Visit Fanaddict's Homepage
quote:

Not sure if I did it the lazy way or the hard way , but I made the following changes to a clean install. Email addresses are hidden, but members are still emailable.

pop_profile.asp (replace email address with email icon)

LINE 173 before :

<td bgColor=<% =strPopUpTableColor %>><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"> <a href="JavaScript:openWindow('pop_mail.asp?id=<% =rs("MEMBER_ID") %>')"><% =ChkString(rs("M_EMAIL"), "display") %></a> </font></td>


LINE 173 after :

<td bgColor=<% =strPopUpTableColor %>><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"> <a href="JavaScript:openWindow('pop_mail.asp?id=<% =rs("MEMBER_ID") %>')"><img border="0" src="icon_email.gif"></a> </font></td>



pop_mail.asp (hide address)

DELETED LINES 174-177

Then added LINE 173 as :

<input type=hidden name="Email" value="<% =rs("M_EMAIL") %>">


Haven't had any problems with it yet...

dave
http://www.mediaslice.com/usathome





Do you have a zip file ready made that includes these adjustments?

I downloaded what Frutzle suggested and then just transferred the pop_profile and pop_mail files on to my server as Tim suggested and that changed the links to the emails, but the emails where still visible from the pop_mail page. I tried to add the other files that came with the download, but then I started getting errors, specifically when trying to register a new user and I abandoned that technique thereafter. Restored the register file and all is back to normal. So if anybody has an easy fix for a novice like me, that would be greatly appreciated.
Go to Top of Page

Fanaddict
Starting Member

2 Posts

Posted - 03 December 2001 :  01:07:53  Show Profile  Visit Fanaddict's Homepage
Ok... came across another ODBC error, so just uploading and replacing the files isn't such a hot idea.

The error came up when I tried to changed the rank of a member from one level to another in pop_profile.

Anybody have this working stable with the emails hidden help!
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 03 December 2001 :  03:57:30  Show Profile
quote:

You can try doing that, but still do make a backup of the files you're going to replace (just in case).



I hope you did that?

If you can't get it to work, let me know what version of the forums you've downloaded (name of the ZIP) and whether or not you've edited inc_profile.asp, pop_mail.asp, pop_profile.asp, register.asp or topic.asp before you tried installing the hide e-mail mod.

Roland

- here to help when possible -

http://www.frutzle.com
Go to Top of Page

TimSinnott
Starting Member

USA
16 Posts

Posted - 03 December 2001 :  11:57:16  Show Profile
Thanks everybody for the help already given in this thread.

A related question:

If the objective of Hide-Email is to prevent a user's email (if they've chosen) from being discovered by another user, then in the present scheme, if someone has the ability, through the pop-email, to still send an email to that user, can't the sender just examine Outlook to see where the email went?

I've not seen it in action, so maybe I'm misunderstanding it.

Tim Sinnott
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 03 December 2001 :  13:58:14  Show Profile
quote:
If the objective of Hide-Email is to prevent a user's email (if they've chosen) from being discovered by another user, then in the present scheme, if someone has the ability, through the pop-email, to still send an email to that user, can't the sender just examine Outlook to see where the email went?


No, you can't possibly see who you sent the e-mail to in any of your e-mail programs as the e-mail is sent via the server and the user's computer isn't involved in it.
If you send a topic to a friend from this forum, you won't be able to find the info of that e-mail back in your e-mail software either.

Roland

- here to help when possible -

http://www.frutzle.com
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 0.35 seconds. Powered By: Snitz Forums 2000 Version 3.4.07