<?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/Mods Unable to Block IPs</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/Mods Unable to Block IPs]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 16 Apr 2026 06:29:40 +0000</pubDate>
  <lastBuildDate>Tue, 25 Oct 2005 01:51:30 +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=16978</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/Mods Unable to Block IPs : In that case thanks to sfd19 as...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92681.html#92681</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20191">Ali Bilgrami</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 25&nbsp;October&nbsp;2005 at 1:51am<br /><br />In that case thanks to sfd19 as well&nbsp;<img alt="Smile" src="https://forums.webwiz.net/smileys/smiley1.gif" align="middle" border="0" border="0">]]>
   </description>
   <pubDate>Tue, 25 Oct 2005 01:51:30 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92681.html#92681</guid>
  </item> 
  <item>
   <title><![CDATA[Admin/Mods Unable to Block IPs : I corrected that variable.  I...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92638.html#92638</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=19649">JJLatWebWiz</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 24&nbsp;October&nbsp;2005 at 12:20pm<br /><br />I corrected that variable.  I don't know how that got there.  But, the credit for <a href="http://forums.webwiz.net/forum_posts.asp?TID=12385#74540" target="_blank">the solid fix</a> goes to sfd19.  I just posted the complete function to make the fix easier.]]>
   </description>
   <pubDate>Mon, 24 Oct 2005 12:20:34 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92638.html#92638</guid>
  </item> 
  <item>
   <title><![CDATA[Admin/Mods Unable to Block IPs :  Thanks JJLatWebWiz your solution...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92637.html#92637</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20191">Ali Bilgrami</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 24&nbsp;October&nbsp;2005 at 11:46am<br /><br />Thanks JJLatWebWiz your solution did work fine and solved my problem :) <img alt="Clap" src="http://webwiz.net/bbs/smileys/smiley32.gif" align="middle" border="0" border="0"><div>although there was &amp;nbsp; and a variable typo that i removed. <img alt="Smile" src="http://webwiz.net/bbs/smileys/smiley1.gif" align="middle" border="0" height="17" width="17" border="0"></div><div>&nbsp;</div><div>here is JJLatWebWiz Code for the IP Baning Problem in WWF V 7.92 And V 7.95 </div><div>it is to be replaced in ../functions/functions_common.asp....</div><div>&nbsp;</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div>&nbsp;</div><div><pre width="80">'******************************************<br>'****&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Banned IP's   &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *****<br>'************************** ****************<br>Private Function bannedIP()<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Declare variables<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dim rsIPAddr<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dim strCheckIPAddress<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dim strUserIPAddress<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dim blnIPMatched<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Intilise variable<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;blnIPMatched = False<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Get the users IP<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strUserIPAddress = getIP()<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Intialise the ADO recordset object<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set rsIPAddr = Server.CreateObject("ADODB.Recordset")<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Get any banned IP address from the database<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Initalise the strSQL variable with an SQL statement to query the database to count the number of topics in the forums<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If strDatabaseType = "SQLServer" Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strSQL = "EXECUTE " &amp; strDbProc &amp;  "BannedIPs"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   strSQL = "SELECT " &amp; strDbTable &amp; "BanList.IP FROM " &amp; strDbTable &amp; "BanList WHERE " &amp; strDbTable &amp; "BanList.IP Is Not Null;"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;End If<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Query the database<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rsIPAddr.Open strSQL, adoCon<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Loop through the IP address and check 'em out<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Do while NOT rsIPAddr.EOF <font color="red">and NOT blnIPMatched</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Get the IP address to check from the recordset&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strCheckIPAddress =  rsIPAddr("IP")&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;        'See if we need to check the IP range or just one IP address&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'If the last character is a * then this is a wildcard range to be checked&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If Right(strCheckIPAddress, 1) = "*"   Then&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  'Remove  the wildcard charcter form the IP &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="#0000ff">strCheckIP Address</font> = Replace(strCheckIPAddress, "*", "", 1, -1,  1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'See  if whats left of the IP  matches<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;I f strCheckIPAddress = <font color="red">Mid(strUserIPAddress, 1, Len(strCheckIPAddress))</font> Then blnIPMatched = True<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="#0000ff">&amp;nbs p;</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Else check the IP address  metches&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E lse<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Else  check to see if the IP address match<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;If strCheckIPAddress = strUserIPAddress Then blnIPMatched =  True<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Move to the next  record<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rsIPAddr.MoveNext<br>&nbsp;     &nbsp; Loop<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Clean  up<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rsIPAddr.Close<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set rsIPAddr = Nothing<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Return the function<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bannedIP = blnIPMatched<br>End Function<br></pre></div><div>&nbsp;</div><div></pre></td></tr></table></div><div>&nbsp;</div><div><font color="#0000ff">strCheckIP Address = strCheckIPAddress in line 40 of this code under the heading of "</font><font color="#000000">'Remove the wildcard charcter form the IP"</font></div><div>&nbsp;</div><div><font color="#0000ff">and delete the &amp;nbs p; in line 44 under the heading "</font><font color="#000000">&nbsp;'See if whats left of the IP matches"</font></div><div><font color="#000000">&nbsp;<img alt="Smile" src="https://forums.webwiz.net/smileys/smiley1.gif" align="middle" border="0" height="17" width="17" border="0"></font></div><div>great work man .... <img alt="Clap" src="https://forums.webwiz.net/smileys/smiley32.gif" align="middle" border="0" height="17" width="18" border="0"></div><span style="font-size:10px"><br /><br />Edited by Ali Bilgrami - 25&nbsp;October&nbsp;2005 at 1:50am</span>]]>
   </description>
   <pubDate>Mon, 24 Oct 2005 11:46:45 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92637.html#92637</guid>
  </item> 
  <item>
   <title><![CDATA[Admin/Mods Unable to Block IPs : Scotty_32, i have such a group...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92631.html#92631</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20191">Ali Bilgrami</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 24&nbsp;October&nbsp;2005 at 9:37am<br /><br />Scotty_32, i have such a group named "Failed!" <IMG height=17 alt=LOL src="http://webwiz.net/bbs/smileys/smiley36.gif" width=17 align=absMiddle border="0">&nbsp;but u see some ppl are just stupid, they come again n again with new ids <IMG height=17 alt=C&#111;nfused src="http://webwiz.net/bbs/smileys/smiley5.gif" width=17 align=absMiddle border="0">&nbsp;that is why email or ip blocking is important and yes i have checked the IPS they are the same. that is why i am worried]]>
   </description>
   <pubDate>Mon, 24 Oct 2005 09:37:42 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92631.html#92631</guid>
  </item> 
  <item>
   <title><![CDATA[Admin/Mods Unable to Block IPs : this might be a silly question,...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92584.html#92584</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=6524">Scotty32</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 23&nbsp;October&nbsp;2005 at 7:50am<br /><br />this might be a silly question, but are your users IPs the same?<br>as they might have a dynamic ip, or posting from a new location<br><br>many of my users ips change often, eg AOL users<br><br>if it IS a IP Blocking problem, you could try de-activating theiraccount, i believe this adds a block so they cant reactive there account<br><br>i my self set up a group called "Banned" and turned forum permissionsoff for this group, now i can put people in this group and they cantpost<br><br>could try this is the IP Blocking isnt working<br>]]>
   </description>
   <pubDate>Sun, 23 Oct 2005 07:50:35 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92584.html#92584</guid>
  </item> 
  <item>
   <title><![CDATA[Admin/Mods Unable to Block IPs : This could be caused by the banned...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92540.html#92540</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=19649">JJLatWebWiz</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 21&nbsp;October&nbsp;2005 at 7:05pm<br /><br />This could be caused by the banned IP bug: <a href="http://forums.webwiz.net/forum_posts.asp?TID=16121" target="_blank">http://forums.webwiz.net/forum_posts.asp?TID=16121</a><br /><br />Try that change and see if the IP blocking works as it should.<span style="font-size:10px"><br /><br />Edited by JJLatWebWiz - 24&nbsp;October&nbsp;2005 at 11:15am</span>]]>
   </description>
   <pubDate>Fri, 21 Oct 2005 19:05:04 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92540.html#92540</guid>
  </item> 
  <item>
   <title><![CDATA[Admin/Mods Unable to Block IPs : I noticed this also on an Access...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92519.html#92519</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=10197">javi712</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 21&nbsp;October&nbsp;2005 at 10:09am<br /><br />I noticed this also on an Access Database. I would block their IP Address, yet they were still able to continue posting as if nothing.]]>
   </description>
   <pubDate>Fri, 21 Oct 2005 10:09:47 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92519.html#92519</guid>
  </item> 
  <item>
   <title><![CDATA[Admin/Mods Unable to Block IPs : hi  im running 7.92 with a couple...]]></title>
   <link>https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92509.html#92509</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20191">Ali Bilgrami</a><br /><strong>Subject:</strong> 16978<br /><strong>Posted:</strong> 21&nbsp;October&nbsp;2005 at 6:06am<br /><br />hi <DIV>im running 7.92 with a couple of 7.95 modifications on SQL 2000 server. now the problem we are facing from some time is that we are unable to stop members from posting or coming with IP Blocking. we tried blocking ranges but to no avail...what can be wrong?</DIV>]]>
   </description>
   <pubDate>Fri, 21 Oct 2005 06:06:45 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/admin-mods-unable-to-block-ips_topic16978_post92509.html#92509</guid>
  </item> 
 </channel>
</rss>