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 / Classic ASP versions(v3.4.XX)
 Auto Subscribe?
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Sitzdeveloper
Starting Member

USA
14 Posts

Posted - 11 September 2002 :  16:37:29  Show Profile  Visit Sitzdeveloper's Homepage
Does the new version auto subscribe a user when they respond or start a new topic?

Thanks

Alex Polajenko

davemaxwell
Access 2000 Support Moderator

USA
3020 Posts

Posted - 11 September 2002 :  16:46:27  Show Profile  Visit davemaxwell's Homepage  Send davemaxwell an AOL message  Send davemaxwell an ICQ Message  Send davemaxwell a Yahoo! Message
no, but if enabled, it does give a checkbox during posting....

Dave Maxwell
Barbershop Harmony Freak
Go to Top of Page

TestMagic
Senior Member

USA
1568 Posts

Posted - 11 September 2002 :  17:30:29  Show Profile  Visit TestMagic's Homepage
I don't think that I would "auto subscribe" members of my forum. A lot of people might see that as spam. It's always best to give options to your users so that they can decide.

My $0.02.

Snitz rocks! · Search 2
Go to Top of Page

Sitzdeveloper
Starting Member

USA
14 Posts

Posted - 12 September 2002 :  16:17:31  Show Profile  Visit Sitzdeveloper's Homepage
quote:
Originally posted by TestMagic

I don't think that I would "auto subscribe" members of my forum. A lot of people might see that as spam. It's always best to give options to your users so that they can decide.

My $0.02.



yes but alot of my new members expect to get subscribed automatically. Especially if they have been to a VBulletin board.

Alex Polajenko
Go to Top of Page

BWJM
Junior Member

Canada
193 Posts

Posted - 12 September 2002 :  23:53:46  Show Profile
This is an issue I am now dealing with on my forum... I had a fellow Admin request that all members be auto-subscribed by default to any topics they post to. That was easy, just add " checked" in the appropriate place and the little checkbox is now on by default.

But... now I've got people saying "yeah, I like the idea, but I'd also like to decide for myself." They want an on/off switch in their profile where they can choose to be auto-subscribed to topics or not.

This sounds like a mod candidate right there, but it is beyond my level of expertise. I don't want to mess around with the code too much. Is there already a mod out there somewhere that will do this?

Go to Top of Page

TestMagic
Senior Member

USA
1568 Posts

Posted - 13 September 2002 :  01:43:35  Show Profile  Visit TestMagic's Homepage
Yes, power to the people, as always. But how did you auto check the box? AFAIK you need to subscribe to each category in Snitz. Anyway, for MODs, I don't recall such a MOD, but check it out for yourself at:

http://www.ls3k.com/snitz/mods.asp

or

http://www.snitzbitz.com

Snitz rocks! · Search 2
Go to Top of Page

Rasco
Advanced Member

Germany
3192 Posts

Posted - 13 September 2002 :  07:25:46  Show Profile  Send Rasco an ICQ Message
There isn`t such a Mod and I think it`s better to not implementing an Auto Subscribe Mod.
Could get you Mail Server a lot of work.

German Snitz Forum
Go to Top of Page

BWJM
Junior Member

Canada
193 Posts

Posted - 13 September 2002 :  14:51:30  Show Profile
As I said above, there is a spot in the code (I think in inc_subscriptions, but I'm not sure) that generates the HTML for the check boxes at the bottom of posts. Just add " checked" in the appropriate place and from now on the box is checked by default.

Having such a mod that has been suggested (eg: allow user to choose whether or not to be auto-subscribed) would be a benefit to some forums, but obviously not for all, especially busy forums. The one I administer is fairly slow - the auto-subscription has had no noticeable effect on performance and due to the low number of daily posts. As with every mod, the ultimate decision rests with the administrator of the site of whether or not they will actually install a mod which could potentially degrade performance. I believe that the mods should be out there for people to choose to use. If they're not there, we have no choice.

Go to Top of Page

davemaxwell
Access 2000 Support Moderator

USA
3020 Posts

Posted - 13 September 2002 :  15:08:03  Show Profile  Visit davemaxwell's Homepage  Send davemaxwell an AOL message  Send davemaxwell an ICQ Message  Send davemaxwell a Yahoo! Message
I personally thought that the "auto-subscribe" feature was an annoying addition by vb, especially since it defaults to "YES". And whenever a site I visited upgraded, I ended up getting subscribed to topics because I missed that they upgraded and didn't see the checkbox.

Dave Maxwell
Barbershop Harmony Freak
Go to Top of Page

velzing
Starting Member

Netherlands
4 Posts

Posted - 13 September 2002 :  17:02:35  Show Profile
quote:
Originally posted by BWJM

As I said above, there is a spot in the code (I think in inc_subscriptions, but I'm not sure) that generates the HTML for the check boxes at the bottom of posts. Just add " checked" in the appropriate place and from now on the box is checked by default.

<cut>




Any idea which line? I cannot find it.

regards,
jans

Edited by - velzing on 13 September 2002 17:03:50
Go to Top of Page

BWJM
Junior Member

Canada
193 Posts

Posted - 15 September 2002 :  18:34:22  Show Profile
The following is lines 279 through 291 of my inc_subscription.asp file. The edit is indicated in red and is located on my line 287. Line numbers may vary.

Function ShowSubLink (SubOption, CatID, ForumID, TopicID, ShowText)
	Dim DefaultFont 
	DefaultFont = "<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>"
	' -- Declare variables...
	Dim StandardLinkInfo, LinkText, LinkIcon, LinkLevel, LinkParam
	if Instr(Request.ServerVariables("SCRIPT_NAME"),"post.asp") then
		' -- Only show the checkboxes on the post page...
		if SubOption = "S" then
			ShowSubLink = "<input type=""checkbox"" name=""Tnotify"" value=""1"" checked />Check here to subscribe to this topic."
		else
			ShowSubLink = "<input type=""checkbox"" name=""Tnotify"" value=""0"" />Check here to unsubscribe from this topic."
		end if
	else


While this works, it is not an ideal solution. This is a master on/off switch for auto-subscribing. What I would really like to see is a mod that allows members to choose through their profile whether or not to be auto-subscribed to topics which they post to.

Go to Top of Page

jramers
Junior Member

133 Posts

Posted - 15 September 2002 :  21:27:51  Show Profile
Is there any way to get the auto-subscribe working for the Quick Reply box as well?
Go to Top of Page

BWJM
Junior Member

Canada
193 Posts

Posted - 16 September 2002 :  14:15:08  Show Profile
Possibly but I have not ventured so far as to try yet. I'm still hoping that there is a suitable mod out there somewhere.

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.43 seconds. Powered By: Snitz Forums 2000 Version 3.4.07