<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Blocking Words Modification"]]></title>
		<link>https://proxy2.de/forum/posts/list/6.php</link>
		<description><![CDATA[Latest messages posted in the topic "Blocking Words Modification"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Blocking Words Modification</title>
				<description><![CDATA[ Carbonize,<br /> <br /> I think I remember reading either here or on the Lazarus GB that either newer versions of AVG and/or Lazarus have the ability to block certain words from being posted (not just censor but actually block the poster from posting). I wanted to try this as another method of blocking spam (I remember you said on your site that links could be blocked with this mod and I figured out that my normal spammers use certain words that I can block w/o hurting the entries from true guestbook signees).<br /> <br /> If you remember me, I am the person that uses AVG with phpWebSite and currently cannot update from 2.3.1. I can however, modify some things with the version I have and I was wondering if the block mod can be applied to 2.3.1?<br /> <br /> If you or anyone else could help me out, I would greatly appreciate it.  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20228.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20228.php</link>
				<pubDate><![CDATA[Tue, 18 Apr 2006 21:48:15]]> GMT</pubDate>
				<author><![CDATA[ db]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The mods for AG will be easy enough. I will toss something together tomorrow.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20229.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20229.php</link>
				<pubDate><![CDATA[Tue, 18 Apr 2006 21:57:09]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]The mods for AG will be easy enough. I will toss something together tomorrow.[/quote]<br /> <br /> Wow, thank you Carbonize! I may not be able to update my version for awhile, but I will have a well-modded version to suit my needs nonetheless.  <img src="https://proxy2.de/forum//images/smilies/97ada74b88049a6d50a6ed40898a03d7.gif" /> I really appreciate that.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20230.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20230.php</link>
				<pubDate><![CDATA[Tue, 18 Apr 2006 22:02:13]]> GMT</pubDate>
				<author><![CDATA[ db]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ THIS IS NOT TESTED<br /> <br /> open lib/add.class.php and replace<br /> [code]<br />         if &#40;$this-&gt;db-&gt;VARS&#91;&quot;censor&quot;&#93;==1&#41; &#123;<br />             $this-&gt;name = $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;name&#41;;<br />             $this-&gt;location = $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;location&#41;;<br />             $this-&gt;comment = $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;comment&#41;;<br />         &#125;[/code]<br />         <br /> With<br /> <br /> [code]        if &#40;$this-&gt;db-&gt;VARS&#91;'censor'&#93; == 1&#41;<br />         &#123;<br />            if &#40;$this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;name&#41; || $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;email&#41; || $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;location&#41; || $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;comment&#41;&#41;<br />            &#123;<br />               return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;'ErrorPost10'&#93;&#41;;<br />            &#125;     <br />         &#125;[/code]<br />         <br /> Save and close the file<br /> <br /> Open up vars.class.php and replace<br /> <br /> [code]    function CensorBadWords&#40;$strg&#41; &#123;<br />         $replace = &quot;#@*%!&quot;;<br />         $this-&gt;query&#40;&quot;select * from &quot;.$this-&gt;table&#91;'words'&#93;&#41;;<br />         while &#40;$row = $this-&gt;fetch_array&#40;$this-&gt;result&#41;&#41; &#123;<br />         	$row&#91;'word'&#93; = preg_quote&#40;$row&#91;'word'&#93;, '/'&#41;;<br /> 			$strg = preg_replace&#40;'/'.$row&#91;'word'&#93;.'/i', $replace, $strg&#41;;<br />         &#125;<br />         return $strg;<br />     &#125;[/code]<br />     <br /> With<br /> <br /> [code]   function CensorBadWords&#40;$strg&#41;<br />    &#123;<br />       $this-&gt;query&#40;&quot;select * from &quot;.$this-&gt;table&#91;'words'&#93;&#41;;<br />       while &#40;$row = $this-&gt;fetch_array&#40;$this-&gt;result&#41;&#41;<br />       &#123;<br />          //if &#40;eregi&#40;$row&#91;'word'&#93;, $strg&#41;&#41;<br />          $row&#91;'word'&#93; = preg_quote&#40;$row&#91;'word'&#93;, '/'&#41;;<br />          if &#40;preg_match&#40;'/'.$row&#91;'word'&#93;.'/i', $strg&#41;&#41;<br />          &#123;<br />             return true;<br />          &#125;<br />       &#125;<br />       return false;<br />    &#125;[/code]<br />    <br /> Save and close the file<br /> <br /> Open up comment.class.php and replace<br /> <br /> [code]        if &#40;$this-&gt;db-&gt;VARS&#91;&quot;censor&quot;&#93;==1&#41; &#123;<br />             $this-&gt;user = $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;user&#41;;<br />             $this-&gt;comment = $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;comment&#41;;<br />         &#125;[/code]<br />         <br /> With<br /> <br /> [code]        if &#40;$this-&gt;db-&gt;VARS&#91;'censor'&#93; == 1&#41; <br />         &#123;<br />            if &#40;$this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;user&#41; || $this-&gt;db-&gt;CensorBadWords&#40;$this-&gt;comment&#41;&#41;<br />            &#123;<br />               return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;'ErrorPost10'&#93;&#41;;<br />            &#125;<br />         &#125;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20231.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20231.php</link>
				<pubDate><![CDATA[Tue, 18 Apr 2006 22:20:11]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I made the modifications.<br /> <br /> When I tried to sign the book with an entry using the censored words, I got the following message.<br /> <br /> [code]Fatal error&#58; Call to undefined function&#58; query&#40;&#41; in /class/vars.class.php on line 269[/code]<br /> <br /> Is this what I am supposed to get (including it showing the full path of my folder) or something else (I assume something else)?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20232.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20232.php</link>
				<pubDate><![CDATA[Tue, 18 Apr 2006 23:09:50]]> GMT</pubDate>
				<author><![CDATA[ db]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Did you put $this-&gt;query and not just query ?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20233.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20233.php</link>
				<pubDate><![CDATA[Tue, 18 Apr 2006 23:39:45]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Did you put $this-&gt;query and not just query ?[/quote]<br /> <br /> I didn't make any other changes other than the ones you told me to make. Should I make that change and then let you know what happens?<br /> <br /> **edit**<br /> <br /> $this-&gt;query was already included in the original changes you suggested.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20234.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20234.php</link>
				<pubDate><![CDATA[Tue, 18 Apr 2006 23:50:46]]> GMT</pubDate>
				<author><![CDATA[ db]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Email me your vars.class.php file. webmaster @ carbonize . co . uk]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20236.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20236.php</link>
				<pubDate><![CDATA[Wed, 19 Apr 2006 09:46:13]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Email me your vars.class.php file. webmaster @ carbonize . co . uk[/quote]<br /> <br /> Sent.  <img src="https://proxy2.de/forum//images/smilies/b2eb59423fbf5fa39342041237025880.gif"  />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20237.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20237.php</link>
				<pubDate><![CDATA[Wed, 19 Apr 2006 10:25:20]]> GMT</pubDate>
				<author><![CDATA[ db]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ OK my mod is fine it's just that you are using a modified version of Advanced Guestbook and so I have emailed you the required change.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20450.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20450.php</link>
				<pubDate><![CDATA[Thu, 11 May 2006 23:09:49]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]OK my mod is fine it's just that you are using a modified version of Advanced Guestbook and so I have emailed you the required change.[/quote]<br /> <br /> I'm still getting the same error.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20451.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20451.php</link>
				<pubDate><![CDATA[Fri, 12 May 2006 00:00:24]]> GMT</pubDate>
				<author><![CDATA[ db]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thank you Carbonize! The blocking word mod works. Please consider this problem resolved.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/20462.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/20462.php</link>
				<pubDate><![CDATA[Fri, 12 May 2006 23:02:02]]> GMT</pubDate>
				<author><![CDATA[ db]]></author>
			</item>
			<item>
				<title>Blocking Words Modification</title>
				<description><![CDATA[ Thanks for posting this turn-around for the "Blocking Words Modification".<br /> <br /> I am great fan and user of AGB and by reading through some of the major topics I have learnd a lot and solved many problems (without asking a single question my self). <br /> <br /> I host a Guestbook for a Gospel Choir and due to your support we now have a clean Guestbook (hopefully)! <br /> <br /> It's a far better way to prevent SPAM by blocking then rather by replacing bad words with symbols like "#@*%!". <br /> <br /> MAY GOD BLESS YOU ALL<br /> <br /> Rainer Burgener<br /> GospelGruppeGossau<br /> Switzerland]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/21932.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/21932.php</link>
				<pubDate><![CDATA[Mon, 15 Jan 2007 10:32:34]]> GMT</pubDate>
				<author><![CDATA[ lance0]]></author>
			</item>
			<item>
				<title>Perfect</title>
				<description><![CDATA[ This worked out perfectly...thanks alot.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/22327.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/22327.php</link>
				<pubDate><![CDATA[Mon, 26 Feb 2007 21:52:34]]> GMT</pubDate>
				<author><![CDATA[ taudelt39]]></author>
			</item>
			<item>
				<title>Yeah</title>
				<description><![CDATA[ This worked perfect! Lovin it.<br /> <br />  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/23660.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/23660.php</link>
				<pubDate><![CDATA[Wed, 5 Dec 2007 18:57:56]]> GMT</pubDate>
				<author><![CDATA[ ikki831]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Awesome little fix<br /> <br /> loving it, and working perfectly for me <img src="https://proxy2.de/forum//images/smilies/97ada74b88049a6d50a6ed40898a03d7.gif" />  <img src="https://proxy2.de/forum//images/smilies/97ada74b88049a6d50a6ed40898a03d7.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24048.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24048.php</link>
				<pubDate><![CDATA[Fri, 23 May 2008 17:29:05]]> GMT</pubDate>
				<author><![CDATA[ aesel]]></author>
			</item>
			<item>
				<title>Spam from neoplus.pl</title>
				<description><![CDATA[ Hello, Carbonize<br /> <br /> I have gotten increasinjgly frequent spam posts to my AGB, all from a 'neoplus.pl' address (but no IP).<br /> <br /> Will this fix work for that?<br /> <br /> If so, what do I do? - do I edit and reload the php files on my ISP server?<br /> <br /> Apologies for my ignorance!<br /> <br /> Steve G.<br /> Memphis, TN USA]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24098.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24098.php</link>
				<pubDate><![CDATA[Fri, 27 Jun 2008 18:49:22]]> GMT</pubDate>
				<author><![CDATA[ steveg]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ 1 - This mod will mean that any post containing words in your bad words list will be blocked.<br /> <br /> 2 - As to the host name goto <a class="snap_shots" href="http://whois.domaintools.com" target="_blank" rel="nofollow">http://whois.domaintools.com</a> or <a class="snap_shots" href="http://dnstools.com" target="_blank" rel="nofollow">http://dnstools.com</a> and put the hostname in to try and get the ip<br /> <br /> 3 - Download the files from your site and edit them on your pc before reuploading them is best.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24099.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24099.php</link>
				<pubDate><![CDATA[Fri, 27 Jun 2008 18:53:14]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>neoplus.pl spam</title>
				<description><![CDATA[ Super!<br /> <br /> Here's what DNS Tools returned for neoplus.pl:<br /> &gt;&gt;<br /> DOMAIN:			neoplus.pl<br /> registrant's handle:	dint3h1wt (INDIVIDUAL)<br /> nameservers:		ns1.kei.pl. [195.149.224.1]<br /> 			ns2.kei.pl. [195.149.225.1]<br /> created:	2003.10.31 15:58:14<br /> last modified:	2007.10.31 15:55:02<br /> <br /> option: the domain name has not option<br /> <br /> TECHNICAL CONTACT: data restricted<br /> <br /> <br /> REGISTRAR: Dinfo Systemy Internetowe<br /> ul. Mostowa 5<br /> 43-300 Bielsko-Biala<br /> Polska/Poland<br /> +48.33 8225471<br /> <a class="snap_shots" href="mailto:biuro@dinfo.pl">biuro@dinfo.pl</a><br /> &lt;&lt;<br /> <br /> I have added those IPs to my Block list.<br /> <br /> So, we'll see if it works ...<br /> <br /> Many thanks!<br /> Steve G.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24100.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24100.php</link>
				<pubDate><![CDATA[Fri, 27 Jun 2008 19:06:20]]> GMT</pubDate>
				<author><![CDATA[ steveg]]></author>
			</item>
			<item>
				<title>Thank you Carbonize</title>
				<description><![CDATA[ Thank you Carbonize]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24104.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24104.php</link>
				<pubDate><![CDATA[Sat, 28 Jun 2008 05:30:21]]> GMT</pubDate>
				<author><![CDATA[ alkhaware]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi Carbonize!<br /> Did you can put here full files with all changes for AG 2.4.2? I'm is not good in php. Thanx advance.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24127.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24127.php</link>
				<pubDate><![CDATA[Sun, 20 Jul 2008 12:13:55]]> GMT</pubDate>
				<author><![CDATA[ Dimson]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ <a class="snap_shots" href="http://www.carbonize.co.uk/AG/WordBlocking.zip" target="_blank" rel="nofollow">www.carbonize.co.uk/AG/WordBlocking.zip</a> using the files from 2.4.3 so should work with 2.4.2.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24129.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24129.php</link>
				<pubDate><![CDATA[Sun, 20 Jul 2008 18:56:11]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanx!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5540/24130.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5540/24130.php</link>
				<pubDate><![CDATA[Sun, 20 Jul 2008 19:48:39]]> GMT</pubDate>
				<author><![CDATA[ Dimson]]></author>
			</item>
	</channel>
</rss>