<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Admin c&#111;ntrol of who registers</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Admin c&#111;ntrol of who registers]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 08 Apr 2026 13:21:14 +0000</pubDate>
  <lastBuildDate>Tue, 25 May 2004 16:38:13 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=10587</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Admin c&#111;ntrol of who registers : We have the activate email and...]]></title>
   <link>https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post58054.html#58054</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9554">kl8ton</a><br /><strong>Subject:</strong> 10587<br /><strong>Posted:</strong> 25&nbsp;May&nbsp;2004 at 4:38pm<br /><br /><P>We have the activate email and the welcome email go to our web administrator, they set the acount up, put them in appropriate groups based on who they are and then email them with the user and password details.&nbsp; We&nbsp;modified the register.asp to this.</P><P><BR>&nbsp;&nbsp;'******************************************<BR>&nbsp;&nbsp;'*** &nbsp;&nbsp;&nbsp; Send activate email&nbsp;&nbsp; &nbsp;***<BR>&nbsp;&nbsp;'******************************************</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Inititlaise the subject of the e-mail that may be sent in the next if/ifelse statements<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strSubject = "" &amp; strTxtWelcome &amp; " " &amp; strTxtEmailToThe &amp; " " &amp; strMainForumName</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'If the members account needs to be activated or reactivated then send the member a re-activate mail a redirect them to a page to tell them there account needs re-activating<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If (blnEmailActivation = True AND strMode = "new") OR blnAccountReactivate = True Then</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Send an e-mail to enable the users account to be activated<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Initailise the e-mail body variable with the body of the e-mail<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strTxtHi &amp; " " &amp; decodeString(strUsername)<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtEmailThankYouForRegistering &amp; " " &amp; strMainForumName &amp; "."<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtUsername &amp; ": - " &amp; decodeString(strUsername)<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; strTxtPassword &amp; ": - " &amp; strPassword<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtToActivateYourMembershipFor &amp; " " &amp; strMainForumName &amp; " " &amp; strTxtForumClickOnTheLinkBelow &amp; ": -"<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strForumPath &amp; "/activate.asp?ID=" &amp; Server.URLEncode(strUserCode)</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Send the e-mail using the Send Mail function created on the send_mail_function.inc file<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; blnSentEmail = SendMail(strEmailBody, decodeString(strUsername), <A href="mailto:admin@yourcompany.com" target="_blank">admin@yourcompany.com</A>, strRealName, decodeString(strEmail), strSubject, strMailComponent, false)</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Reset server Object<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rsCommon.Close<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set rsCommon = Nothing<BR>&nbsp;&nbsp;&nbsp;adoCon.Close<BR>&nbsp;&nbsp;&nbsp;Set adoCon = Nothing</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Redirect the reactivate page<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If blnAccountReactivate = True Then<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Response.Redirect("register_confirm.asp?TP=REACT&amp;FID=" &amp; intForumID)<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Redirect to the activate page<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Response.Redirect("register_confirm.asp?TP=ACT&amp;FID=" &amp; intForumID)<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If</P><P><BR>&nbsp;&nbsp;'******************************************<BR>&nbsp;&nbsp;'*** &nbsp;&nbsp;&nbsp; Send welcome email&nbsp;&nbsp; &nbsp;***<BR>&nbsp;&nbsp;'******************************************</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Send the new user a welcome e-mail if e-mail notification is turned on and the user has given an e-mail address<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ElseIf blnEmail = True AND strEmail &lt;&gt; "" AND strMode = "new" Then</P><P> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Initailise the e-mail body variable with the body of the e-mail<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strTxtHi &amp; " " &amp; decodeString(strUsername)<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtEmailThankYouForRegistering &amp; " " &amp; strMainForumName &amp; "."<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtEmailYouCanNowUseTheForumAt &amp; " " &amp; strWebsiteName &amp; " " &amp; strTxtEmailForumAt &amp; " " &amp; strForumPath<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtUsername &amp; ": - " &amp; strUsername<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; strTxtPassword &amp; ": - " &amp; decodeString]]>
   </description>
   <pubDate>Tue, 25 May 2004 16:38:13 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post58054.html#58054</guid>
  </item> 
  <item>
   <title><![CDATA[Admin c&#111;ntrol of who registers : Thanks for the advice! I will...]]></title>
   <link>https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post58025.html#58025</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=16102">lshiver</a><br /><strong>Subject:</strong> 10587<br /><strong>Posted:</strong> 25&nbsp;May&nbsp;2004 at 8:37am<br /><br /><P>Thanks for the advice!&nbsp; I will be setting up my groups.</P><P>L.</P>]]>
   </description>
   <pubDate>Tue, 25 May 2004 08:37:25 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post58025.html#58025</guid>
  </item> 
  <item>
   <title><![CDATA[Admin c&#111;ntrol of who registers : -borg-&amp;#039;s suggestion is the...]]></title>
   <link>https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post57972.html#57972</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=6337">xeerex</a><br /><strong>Subject:</strong> 10587<br /><strong>Posted:</strong> 24&nbsp;May&nbsp;2004 at 4:54pm<br /><br /><P>-borg-'s suggestion is the easiest thing to implement.</P><P>I created a forum and setup extensive grouping systems where a user had to make a post with some basic informaiton, and then an admin would elevate their group based on the post. It worked great except for the fact that we had over 1000 users register in 36 hours. What a nightmare!</P><P>BTW, kudos again to -borg- as I have a forum running very well with over 7100 users, 12+ MB's in size, averages 25-30 active users at any time, and peak at times with over 100 users. Did I mention it's on Access?<IMG src="https://forums.webwiz.net/smileys/smiley2.gif" border="0"></P>]]>
   </description>
   <pubDate>Mon, 24 May 2004 16:54:16 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post57972.html#57972</guid>
  </item> 
  <item>
   <title><![CDATA[Admin c&#111;ntrol of who registers : There isn&amp;#039;t, but you could...]]></title>
   <link>https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post57971.html#57971</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 10587<br /><strong>Posted:</strong> 24&nbsp;May&nbsp;2004 at 4:47pm<br /><br />There isn't, but you could always put new members into a group thatdoesn't have permission to post in partcular forums, then move themmanually to a group that does have permission to post/access orwhatever in a forum.]]>
   </description>
   <pubDate>Mon, 24 May 2004 16:47:45 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post57971.html#57971</guid>
  </item> 
  <item>
   <title><![CDATA[Admin c&#111;ntrol of who registers : Hi, I am in the middle of setting...]]></title>
   <link>https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post57969.html#57969</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=16102">lshiver</a><br /><strong>Subject:</strong> 10587<br /><strong>Posted:</strong> 24&nbsp;May&nbsp;2004 at 4:22pm<br /><br /><P>Hi,</P><P>I am in the middle of setting up a web wiz forum and was wondering if there is a way when a person registers that it goes to the administrator who can then give them&nbsp; permission (or Not) for the forums?</P><P>Thanks for any help</P><P>L<IMG src="https://forums.webwiz.net/smileys/smiley25.gif" border="0"></P>]]>
   </description>
   <pubDate>Mon, 24 May 2004 16:22:18 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-control-of-who-registers_topic10587_post57969.html#57969</guid>
  </item> 
 </channel>
</rss>