<?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 : Groups question</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 : Groups question]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 08 Apr 2026 08:35:16 +0000</pubDate>
  <lastBuildDate>Thu, 11 Jan 2007 19:37:18 +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=22363</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[Groups question : you could (as someone already...]]></title>
   <link>https://forums.webwiz.net/groups-question_topic22363_post119301.html#119301</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=6524">Scotty32</a><br /><strong>Subject:</strong> 22363<br /><strong>Posted:</strong> 11&nbsp;January&nbsp;2007 at 7:37pm<br /><br />you could (as someone already said) name it "Committe A &amp; B" and give that group permissions to the 2 forums.<br><br>or you could just edit the "User Permissions" - the group title would say "Committee A" but they'd have access to Committee B's forum<br><br>obviously this isnt that great since your group names reflect what they do and people may wonder why their in 2 groups.<br>]]>
   </description>
   <pubDate>Thu, 11 Jan 2007 19:37:18 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/groups-question_topic22363_post119301.html#119301</guid>
  </item> 
  <item>
   <title><![CDATA[Groups question : You might (I dunno) be interested...]]></title>
   <link>https://forums.webwiz.net/groups-question_topic22363_post119297.html#119297</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=25313">Melkor</a><br /><strong>Subject:</strong> 22363<br /><strong>Posted:</strong> 11&nbsp;January&nbsp;2007 at 6:29pm<br /><br />You might (I dunno) be interested in the autoatic grouping script I wrote. My forum has over 80,000 members and when I transfered to 8.5 the thought of putting all those members into groups manually made me itch. So I wrote a grouping script after making the initial groups based on my old permission system which was run from a tblAuthor column (stat1)<br><br><table width="99%"><tr><td><pre class="BBcode"><br>&lt;% Option Explicit %&gt;<br>&lt;!--#include file="../common.asp" --&gt;<br><br>&lt;%<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 14 WHERE(LEFT(Stat1, 1) = N'E') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 15 WHERE(LEFT(Stat1, 1) = N'D') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 16 WHERE(LEFT(Stat1, 1) = N'G') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 17 WHERE(LEFT(Stat1, 1) = N'R') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 18 WHERE(LEFT(Stat1, 1) = N'I') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 19 WHERE(LEFT(Stat1, 1) = N'F') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 20 WHERE(LEFT(Stat1, 1) = N'H') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 21 WHERE(LEFT(Stat1, 1) = N'L') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 22 WHERE(LEFT(Stat1, 1) = N'M') AND (Right(Stat1, 2) &lt; N'97')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 7 WHERE(LEFT(Stat1, 1) = N'A') AND (RIGHT(Stat1, 2) &gt; N'04')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 7 WHERE(LEFT(Stat1, 1) = N'A') AND (RIGHT(Stat1, 2) = N'02')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br><br>&nbsp;&nbsp;&nbsp; strSQL = "UPDATE tblAuthor SET Group_ID = 6 WHERE(RIGHT(Stat1, 2) &gt; N'97') OR (LEFT(Stat1,1)=N'B')"<br>&nbsp;&nbsp;&nbsp; adoCon.Execute strSQL<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; adoCon.Close<br>&nbsp;&nbsp;&nbsp; Set adoCon = Nothing<br>&nbsp;&nbsp;&nbsp; Set strCon = Nothing<br>&nbsp;&nbsp;&nbsp; <br>%&gt;</pre></td></tr></table><br>]]>
   </description>
   <pubDate>Thu, 11 Jan 2007 18:29:07 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/groups-question_topic22363_post119297.html#119297</guid>
  </item> 
  <item>
   <title><![CDATA[Groups question : I would create another group for...]]></title>
   <link>https://forums.webwiz.net/groups-question_topic22363_post119200.html#119200</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=25322">MrMellie</a><br /><strong>Subject:</strong> 22363<br /><strong>Posted:</strong> 09&nbsp;January&nbsp;2007 at 10:20am<br /><br />I would create another group for people who are members of both committess. That's how groups are really designed to be used. Very flexible and powerfull and one of the reasons I chose WWF. <img src="https://forums.webwiz.net/smileys/smiley1.gif" border="0" align="middle" />]]>
   </description>
   <pubDate>Tue, 09 Jan 2007 10:20:05 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/groups-question_topic22363_post119200.html#119200</guid>
  </item> 
  <item>
   <title><![CDATA[Groups question : That&amp;#039;d be the safest way...]]></title>
   <link>https://forums.webwiz.net/groups-question_topic22363_post119191.html#119191</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=25313">Melkor</a><br /><strong>Subject:</strong> 22363<br /><strong>Posted:</strong> 09&nbsp;January&nbsp;2007 at 6:12am<br /><br />That'd be the safest way to do it.]]>
   </description>
   <pubDate>Tue, 09 Jan 2007 06:12:39 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/groups-question_topic22363_post119191.html#119191</guid>
  </item> 
  <item>
   <title><![CDATA[Groups question : Is there a way to make a user...]]></title>
   <link>https://forums.webwiz.net/groups-question_topic22363_post119190.html#119190</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=25433">GladiusA</a><br /><strong>Subject:</strong> 22363<br /><strong>Posted:</strong> 09&nbsp;January&nbsp;2007 at 5:08am<br /><br />Is there a way to make a user a member of more than one group? <DIV>&nbsp;</DIV><DIV>E.g., I have a group for "Committee A" and "Committee B", each of which have their own sub forum and can only be accessed by people in the corresponding group. </DIV><DIV>&nbsp;</DIV><DIV>One person is actually a member of both committees and needs access to both forums. Do I need to create a separate group just for that person to give him access to both forums?</DIV>]]>
   </description>
   <pubDate>Tue, 09 Jan 2007 05:08:47 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/groups-question_topic22363_post119190.html#119190</guid>
  </item> 
 </channel>
</rss>