<?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 : Help...No moderati&#111;n abilities</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 : Help...No moderati&#111;n abilities]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 13 Apr 2026 18:02:00 +0000</pubDate>
  <lastBuildDate>Tue, 02 Aug 2005 08:16:40 +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=15989</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[Help...No moderati&#111;n abilities : In post_message.asp I see the...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post88055.html#88055</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21261">minigallery</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 02&nbsp;August&nbsp;2005 at 8:16am<br /><br /><P>In post_message.asp I see the line:</P><DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td><pre class="BBcode">If strMode = "editTopic" OR strMode = "edit" AND (blnAdmin = false&nbsp;AND blnModerator = false) Then</pre></td></tr></table><DIV>&nbsp;</DIV><DIV>I was never too good understanding the differences between how VBScript processes ANDs and ORs without the brackets so I made a change in my version to make it this:</DIV><DIV>&nbsp;</DIV><table width="99%"><tr><td><pre class="BBcode">If (strMode = "editTopic" OR strMode = "edit") AND (blnAdmin = false&nbsp;OR blnModerator = false) Then</pre></td></tr></table><DIV>&nbsp;</DIV><DIV>(I also changed the AND to an OR to test for a moderator or admin.</DIV><DIV>&nbsp;</DIV><DIV>I didn't change the line of code Mandrakes mentioned.</DIV><DIV>&nbsp;</DIV><DIV>I'm just wondering if my code is now vulnerable to attack - I've tested from the point of view of an admin and normal member it seems to be OK.</DIV><DIV>&nbsp;</DIV><DIV>I am using the following logic:</DIV><DIV>If message is to be edited and I am NOT an admin or moderator then test to see if I actually posted the message.</DIV><DIV>&nbsp;</DIV><DIV>Can anyone confirm if my logic is correct and&nbsp;if it will break anything?</DIV><DIV>&nbsp;</DIV><DIV>Thanks <IMG height=17 alt="Big smile" src="http://forums.webwiz.net/smileys/smiley4.gif" width=17 align=absMiddle border="0"></DIV></DIV>]]>
   </description>
   <pubDate>Tue, 02 Aug 2005 08:16:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post88055.html#88055</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : I had the same problem, Mandrakes...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post88014.html#88014</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21309">awen</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 01&nbsp;August&nbsp;2005 at 1:57pm<br /><br />I had the same problem, Mandrakes fix took care of it for me too.&nbsp; Thanks!]]>
   </description>
   <pubDate>Mon, 01 Aug 2005 13:57:32 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post88014.html#88014</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : Ichange thisin &amp;#034;post_message.asp&amp;#034;...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87947.html#87947</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21290">Mandrakes</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 31&nbsp;July&nbsp;2005 at 3:02am<br /><br />I&nbsp;change this&nbsp;in "post_message.asp" and is working for me, i hope&nbsp;that it&nbsp;helps.&nbsp;<DIV>&nbsp;</DIV><DIV><table width="99%"><tr><td><pre class="BBcode"></DIV><DIV>'***&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Edit post Check&nbsp;&nbsp;***<BR>'******************************************<BR>If (blnAdmin = false AND blnModerator = false) then<BR>'Check if the user can edit this topic<BR>If strMode = "editTopic" OR strMode = "edit" Then</DIV><DIV>....</DIV><DIV>....</DIV><DIV>....</DIV><DIV>&nbsp;&nbsp;'Redirect to a page asking for the user to enter the forum password<BR>&nbsp;&nbsp;Response.Redirect("insufficient_permission.asp")<BR>&nbsp;End If<BR>&nbsp;<BR>&nbsp;rsCommon.Close<BR>End If<BR>End If</DIV><DIV></pre></td></tr></table></DIV>]]>
   </description>
   <pubDate>Sun, 31 Jul 2005 03:02:47 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87947.html#87947</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : This is a known problem with the...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87861.html#87861</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 29&nbsp;July&nbsp;2005 at 6:46am<br /><br />This is a known problem with the present version that will be looked at for future releases as soon as there is time.]]>
   </description>
   <pubDate>Fri, 29 Jul 2005 06:46:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87861.html#87861</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : UPDATE :  Ok, i have come to...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87849.html#87849</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21243">CrazyCougar</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 29&nbsp;July&nbsp;2005 at 1:34am<br /><br />UPDATE :<DIV>&nbsp;</DIV><DIV>Ok, i have come to realize that myself and other moderators CAN edit member posts. But only regular members. Moderators, inlcuding the site admin, do not have the ability to edit other moderators OR admins posts. This is something we need very badly as we work together as a team to update threads, etc...</DIV><DIV>&nbsp;</DIV><DIV>How can I make it so that everyone BUT the regular members can edit other's posts??? Like I said, I have tried grouping, and nothing seems to work. And its just silly, as the admin of the site, that I wouldnt have rights to edit EVERYONES posts.</DIV><DIV>&nbsp;</DIV><DIV>Suggestions anyone?</DIV>]]>
   </description>
   <pubDate>Fri, 29 Jul 2005 01:34:53 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87849.html#87849</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : I have defaulted everything back...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87779.html#87779</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21243">CrazyCougar</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 27&nbsp;July&nbsp;2005 at 2:07pm<br /><br />I have defaulted everything back to install state and I still cant edit posts. It allows me to click on the button and do my edit, but the minute I hit update, it tells me I dont have sufficient permissions. And I am the freakin site admin!!! LOL!<DIV>&nbsp;</DIV><DIV>I cant figure out what is going on. I used to use the Access version of WWF and had no problems other than it crashing because to many users were logged in. But as soon as I started using the MSSQL database it seems I cant edit posts.</DIV>]]>
   </description>
   <pubDate>Wed, 27 Jul 2005 14:07:30 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87779.html#87779</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : Ok here is another thing...  I...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87732.html#87732</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21243">CrazyCougar</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 26&nbsp;July&nbsp;2005 at 3:45pm<br /><br />Ok here is another thing...<DIV>&nbsp;</DIV><DIV>I log in as the default adminstator account and it tells me I have insufficient permissions as well.....UG! Whats happening? I just installed this forum, so I cannot say that it has worked before and just suddenly stopped working. This is the first time I tried to edit a user post.</DIV>]]>
   </description>
   <pubDate>Tue, 26 Jul 2005 15:45:18 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87732.html#87732</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : Ok here is an example of one of...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87731.html#87731</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21243">CrazyCougar</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 26&nbsp;July&nbsp;2005 at 2:58pm<br /><br /><P>Ok here is an example of one of the forum permissions :</P><DIV>In my general info forum, I have permission set up for Registered Users to edit posts. I have the "Admin Group" set up as a moderator&nbsp;with permission to edit posts as well. But no luck. I even tried other groups and individual users as moderators giving them the same permissions. No luck.</DIV><DIV>&nbsp;</DIV><DIV>It seems the edit option is the only one missing. I can sticky, move and delete topics using the "admin" button above the post. And I can click the edit button to even edit the post, but once I hit update, i get the Sorry message.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 26 Jul 2005 14:58:20 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87731.html#87731</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : you need o go into the group permssions...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87730.html#87730</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2216">dj air</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 26&nbsp;July&nbsp;2005 at 2:52pm<br /><br />you need o go into the group permssions section and select the specification for that group.<br><br>ie, edit posts etc.<br><br>then assign those settings to every group.<br><br>on a side note, you did allopw forum moderators or registered users theability to edit posts ,and also make it that your group is a Moderatnggroup of that forum.<br>]]>
   </description>
   <pubDate>Tue, 26 Jul 2005 14:52:38 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87730.html#87730</guid>
  </item> 
  <item>
   <title><![CDATA[Help...No moderati&#111;n abilities : Hi, I just recently installed...]]></title>
   <link>https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87729.html#87729</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=21243">CrazyCougar</a><br /><strong>Subject:</strong> 15989<br /><strong>Posted:</strong> 26&nbsp;July&nbsp;2005 at 2:38pm<br /><br />Hi, I just recently installed hte 7.92 version of WWF using an SQL database.<DIV>&nbsp;</DIV><DIV>Well, it seems that although I have admin abilities, and can access the admin menu ALONG with admin topics (such as sticky and update them), I cannot edit posts.</DIV><DIV>&nbsp;</DIV><DIV>I have changed specific permissions for groups and individual. I have assigned permissions to&nbsp;myself directly as a moderator in a forum and a few others and still no luck. What I cant understand is , as the site admin, I cant do&nbsp;edit any&nbsp;posts. Oh I am sooo frustrated.</DIV><DIV>&nbsp;</DIV><DIV>I get this "<SPAN =lgText>Sorry, only members with sufficient permission can access this page."&nbsp; HELP!!!!!</SPAN></DIV><DIV><SPAN =lgText></SPAN>&nbsp;</DIV><DIV><SPAN =lgText></SPAN>&nbsp;</DIV><DIV><SPAN =lgText></SPAN>&nbsp;</DIV><DIV><SPAN =lgText></SPAN>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 26 Jul 2005 14:38:54 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/help-no-moderation-abilities_topic15989_post87729.html#87729</guid>
  </item> 
 </channel>
</rss>