<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Adding a simple human verification test"]]></title>
		<link>https://proxy2.de/forum/posts/list/5.php</link>
		<description><![CDATA[Latest messages posted in the topic "Adding a simple human verification test"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Adding a simple human verification test</title>
				<description><![CDATA[ Ok after numerous requests I have decided to write this mod to let you add a test to make sure the poster is human. It's not infallible and will not stop human posters from spamming. If you don't fancy trying to edit the files yourself you can find them pre edited at http://carbonize.co.uk/AG/<br /> <br /> For Advanced Guestbook 2.3.1 and 2.3.2 (instructions for 2.2 are after)<br /> For 2.3.3 and 2.3.4 follow 2.3.2<br /> <br /> Open templates/form.php<br /> <br /> Find[code]if&#40;document.book.gb_comment.value == &quot;&quot;&#41; &#123;[/code]<br /> <br /> replace that with[code] if&#40;document.book.bottest.value == &quot;&quot;&#41; &#123;<br />    alert&#40;&quot;$LANG&#91;ErrorPost12&#93;&quot;&#41;;<br />    document.book.bottest.focus&#40;&#41;;<br />    return false;<br />  &#125;<br />  if&#40;document.book.gb_comment.value == &quot;&quot;&#41; &#123;[/code]<br />  <br />  next find[code]  &lt;tr bgcolor=&quot;$VARS&#91;tb_color_1&#93;&quot;&gt;<br />     &lt;td width=&quot;25%&quot;&gt;&lt;div align=&quot;left&quot; class=&quot;font2&quot;&gt;$HTML_CODE&lt;br&gt;$SMILE_CODE&lt;br&gt;$AG_CODE&lt;/div&gt;&lt;/td&gt;<br />     &lt;td&gt;[/code]<br />     <br /> Replace that with[code]  &lt;tr bgcolor=&quot;$VARS&#91;tb_color_1&#93;&quot;&gt;<br />     &lt;td width=&quot;25%&quot; class=&quot;font2&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/user.gif&quot; width=&quot;16&quot; height=&quot;15&quot; alt=&quot;&quot;&gt; Human Verification&#58;&lt;/td&gt;<br />     &lt;td class=&quot;font2&quot;&gt;To prove you are not a bot please type the word ARMADILLO into the box below.&lt;br&gt;<br />     &lt;input type=&quot;text&quot; size=&quot;42&quot; maxlength=&quot;30&quot; name=&quot;bottest&quot;&gt;&lt;/td&gt;<br />   &lt;/tr&gt;<br />   &lt;tr bgcolor=&quot;$VARS&#91;tb_color_1&#93;&quot;&gt;<br />     &lt;td width=&quot;25%&quot;&gt;&lt;div align=&quot;left&quot; class=&quot;font2&quot;&gt;$HTML_CODE&lt;br&gt;$SMILE_CODE&lt;br&gt;$AG_CODE&lt;/div&gt;&lt;/td&gt;<br />     &lt;td&gt;[/code]<br />     <br /> Remember to change the question to make it unique to your site.<br /> <br /> Save and close the file<br /> <br /> Now open addentry.php UNLESS you are using the guestbook as a module in PHP Nuke in which case make these changes to index.php<br /> <br /> For 2.3.1 find[code]$gb_post-&gt;name = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93; &#58; '';[/code]<br /> <br /> replace with[code]$gb_post-&gt;bottest = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;bottest&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;bottest&quot;&#93; &#58; '';<br /> $gb_post-&gt;name = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93; &#58; '';[/code]<br /> <br /> For 2.3.2 find[code]$gb_post-&gt;name = &#40;isset&#40;$_POST&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_name&quot;&#93; &#58; '';[/code]<br /> <br /> replace with[code]$gb_post-&gt;bottest = &#40;isset&#40;$_POST&#91;&quot;bottest&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;bottest&quot;&#93; &#58; '';<br /> $gb_post-&gt;name = &#40;isset&#40;$_POST&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_name&quot;&#93; &#58; '';[/code]<br /> <br /> Save and close the file.<br /> <br /> Now open lib/add.class.php and find[code]var $name = '';[/code]<br /> <br /> replace that with[code]var $name = '';<br />   var $bottest = '';<br />   var $bottestanswer = 'armadillo'; /* this is the answer to the question. It must contain no '  */[/code]<br />   <br /> Next find[code]if &#40;$this-&gt;name == &quot;&quot;&#41; &#123;[/code]<br /> <br /> and replace that with[code]    if &#40;!get_magic_quotes_gpc&#40;&#41;&#41;<br />     &#123;<br />      $this-&gt;bottest = addslashes&#40;$this-&gt;bottest&#41;;<br />      $this-&gt;bottestanswer = addslashes&#40;$this-&gt;bottestanswer&#41;;<br />     &#125;<br /> if &#40;$this-&gt;name == &quot;&quot;&#41; &#123;[/code]<br /> <br /> Now find[code]&#125; else &#123;<br />             $this-&gt;url = trim&#40;$this-&gt;url&#41;;[/code]<br />             <br /> Replace with[code]        &#125; elseif &#40;$this-&gt;bottest == ''&#41; &#123;<br />     				return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;&quot;ErrorPost12&quot;&#93;&#41;;<br /> 				&#125; elseif &#40;strtolower&#40;$this-&gt;bottest&#41; != strtolower&#40;$this-&gt;bottestanswer&#41;&#41; &#123;<br />     				return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;&quot;ErrorPost13&quot;&#93;&#41;;<br />         &#125; else &#123;<br />             $this-&gt;url = trim&#40;$this-&gt;url&#41;;[/code]<br />             <br /> Next find[code]$HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;gb_name\&quot; value=\&quot;&quot;.$this-&gt;name.&quot;\&quot;&gt;\n&quot;;[/code]<br /> <br /> and replace it with[code]$HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;gb_name\&quot; value=\&quot;&quot;.$this-&gt;name.&quot;\&quot;&gt;\n&quot;;<br /> $HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;bottest\&quot; value=\&quot;&quot;.$this-&gt;bottest.&quot;\&quot;&gt;\n&quot;;[/code]<br /> <br /> Save and close the file.<br /> <br /> Finally open lang/english.php (If your guestbook is not in English open the appropriate language file and change the messages into your own language.<br /> <br /> Find[code]$LANG&#91;&quot;ErrorPost11&quot;&#93; = &quot;You forgot to fill in the Comment field. Please correct it and re-submit.&quot;;[/code]<br /> <br /> and replace it with[code]$LANG&#91;&quot;ErrorPost11&quot;&#93; = &quot;You forgot to fill in the Comment field. Please correct it and re-submit.&quot;;<br /> $LANG&#91;&quot;ErrorPost12&quot;&#93; = &quot;You forgot to fill in the Human Verification field. Please correct it and re-submit.&quot;;<br /> $LANG&#91;&quot;ErrorPost13&quot;&#93; = &quot;The Human verification answer you supplied is wrong. Please correct it and re-submit.&quot;;[/code]<br /> <br /> Save and close the file and you are done.<br /> <br /> [b]INSTRUCTIONS FOR 2.2[/b]<br /> <br /> Open templates/form.php<br /> <br /> Find[code]if&#40;document.book.comment.value == &quot;&quot;&#41; &#123;[/code]<br /> <br /> replace that with[code] if&#40;document.book.bottest.value == &quot;&quot;&#41; &#123;<br />    alert&#40;&quot;$LANG&#91;ErrorPost12&#93;&quot;&#41;;<br />    document.book.bottest.focus&#40;&#41;;<br />    return false;<br />  &#125;<br />  if&#40;document.book.comment.value == &quot;&quot;&#41; &#123;[/code]<br />  <br />  next find[code]  &lt;tr bgcolor=&quot;$VARS&#91;tb_color_1&#93;&quot;&gt;<br />     &lt;td width=&quot;25%&quot;&gt;&lt;div align=&quot;left&quot; class=&quot;font2&quot;&gt;$HTML_CODE&lt;br&gt;$SMILE_CODE&lt;br&gt;$AG_CODE&lt;/div&gt;&lt;/td&gt;<br />     &lt;td&gt;[/code]<br />     <br /> Replace that with[code]  &lt;tr bgcolor=&quot;$VARS&#91;tb_color_1&#93;&quot;&gt;<br />     &lt;td width=&quot;25%&quot; class=&quot;font2&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/user.gif&quot; width=&quot;16&quot; height=&quot;15&quot; alt=&quot;&quot;&gt; Human Verification&#58;&lt;/td&gt;<br />     &lt;td class=&quot;font2&quot;&gt;To prove you are not a bot please type the word ARMADILLO into the box below.&lt;br&gt;<br />     &lt;input type=&quot;text&quot; size=&quot;42&quot; maxlength=&quot;30&quot; name=&quot;bottest&quot;&gt;&lt;/td&gt;<br />   &lt;/tr&gt;<br />   &lt;tr bgcolor=&quot;$VARS&#91;tb_color_1&#93;&quot;&gt;<br />     &lt;td width=&quot;25%&quot;&gt;&lt;div align=&quot;left&quot; class=&quot;font2&quot;&gt;$HTML_CODE&lt;br&gt;$SMILE_CODE&lt;br&gt;$AG_CODE&lt;/div&gt;&lt;/td&gt;<br />     &lt;td&gt;[/code]<br />     <br /> Remember to change the question to make it unique to your site.<br /> <br /> Save and close the file<br /> <br /> Now open addentry.php<br /> <br /> find[code]$gb_post-&gt;name = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;name&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;name&quot;&#93; &#58; '';[/code]<br /> <br /> replace with[code]$gb_post-&gt;bottest = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;bottest&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;bottest&quot;&#93; &#58; '';<br /> $gb_post-&gt;name = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;name&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;name&quot;&#93; &#58; '';[/code]<br /> <br /> Save and close the file.<br /> <br /> Now open lib/add.class.php and find[code]var $name = '';[/code]<br /> <br /> replace that with[code]var $name = '';<br />   var $bottest = '';<br />   var $bottestanswer = 'armadillo'; /* this is the answer to the question. It must contain no '  */[/code]<br />   <br /> Next find[code]if &#40;$this-&gt;name == &quot;&quot;&#41; &#123;[/code]<br /> <br /> and replace that with[code]    if &#40;!get_magic_quotes_gpc&#40;&#41;&#41;<br />     &#123;<br />      $this-&gt;bottest = addslashes&#40;$this-&gt;bottest&#41;;<br />      $this-&gt;bottestanswer = addslashes&#40;$this-&gt;bottestanswer&#41;;<br />     &#125;<br /> if &#40;$this-&gt;name == &quot;&quot;&#41; &#123;[/code]<br /> <br /> Now find[code]&#125; else &#123;<br />             $this-&gt;url = trim&#40;$this-&gt;url&#41;;[/code]<br />             <br /> Replace with[code]        &#125; elseif &#40;$this-&gt;bottest == ''&#41; &#123;<br />     				return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;&quot;ErrorPost12&quot;&#93;&#41;;<br /> 				&#125; elseif &#40;strtolower&#40;$this-&gt;bottest&#41; != strtolower&#40;$this-&gt;bottestanswer&#41;&#41; &#123;<br />     				return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;&quot;ErrorPost13&quot;&#93;&#41;;<br />         &#125; else &#123;<br />             $this-&gt;url = trim&#40;$this-&gt;url&#41;;[/code]<br />             <br /> Next find[code]$HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;name\&quot; value=\&quot;&quot;.$this-&gt;name.&quot;\&quot;&gt;\n&quot;;[/code]<br /> <br /> and replace it with[code]$HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;name\&quot; value=\&quot;&quot;.$this-&gt;name.&quot;\&quot;&gt;\n&quot;;<br /> $HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;bottest\&quot; value=\&quot;&quot;.$this-&gt;bottest.&quot;\&quot;&gt;\n&quot;;[/code]<br /> <br /> Save and close the file.<br /> <br /> Finally open lang/english.php (If your guestbook is not in English open the appropriate language file and change the messages into your own language.<br /> <br /> Find[code]$LANG&#91;&quot;ErrorPost11&quot;&#93; = &quot;You forgot to fill in the Comment field. Please correct it and re-submit.&quot;;[/code]<br /> <br /> and replace it with[code]$LANG&#91;&quot;ErrorPost11&quot;&#93; = &quot;You forgot to fill in the Comment field. Please correct it and re-submit.&quot;;<br /> $LANG&#91;&quot;ErrorPost12&quot;&#93; = &quot;You forgot to fill in the Human Verification field. Please correct it and re-submit.&quot;;<br /> $LANG&#91;&quot;ErrorPost13&quot;&#93; = &quot;The Human verification answer you supplied is wrong. Please correct it and re-submit.&quot;;[/code]<br /> <br /> Save and close the file and you are done.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16304.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16304.php</link>
				<pubDate><![CDATA[Mon, 30 May 2005 13:05:58]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ there was a small cock up above. In add.class.php it should be <br /> [b]var $bottest = '';[/b]<br /> and not<br /> [b]var bottest = '';[/b]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16349.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16349.php</link>
				<pubDate><![CDATA[Sat, 4 Jun 2005 07:26:55]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I integrated the mod in my guestbook this morning, and it works fine. Thanks! Let's hope that it stops the spam.<br /> However, I had to correct a slight mistake in the last change in lib/add.class.php, otherwise the answer would always be empty:<br /> <br /> In the following line, the '$' in front of [i]bottestanswer [/i]is wrong.<br /> [code]elseif &#40;strtolower&#40;$this-&gt;bottest&#41; != strtolower&#40;$this-&gt;$bottestanswer&#41;&#41;[/code]<br /> <br /> Correct line:<br /> [code]elseif &#40;strtolower&#40;$this-&gt;bottest&#41; != strtolower&#40;$this-&gt;bottestanswer&#41;&#41;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16351.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16351.php</link>
				<pubDate><![CDATA[Sat, 4 Jun 2005 13:03:21]]> GMT</pubDate>
				<author><![CDATA[ Jozilla]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Two mistakes isn't bad for a mod I made up as I typed it in here lol. Thank you for pointing out my mistake.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16352.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16352.php</link>
				<pubDate><![CDATA[Sat, 4 Jun 2005 14:03:07]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I have included the mod into one of my guestbooks, including the error fix but now i'm getting a<br /> Guestbook - Error  	 <br /> You forgot to fill in the Name field. Please correct it and re-submit.<br /> <br /> i''m running ad_guestbook 2.3.1 and double checked all the changes, of course i put in a name in the name field as well as the human verification check.<br /> <br /> Any ideas?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16405.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16405.php</link>
				<pubDate><![CDATA[Wed, 8 Jun 2005 22:58:00]]> GMT</pubDate>
				<author><![CDATA[ fng]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You've either made an error in addentry.php or add.class.php. Email the two files to me at <a class="snap_shots" href="mailto:webmaster@carbonize.co.uk">webmaster@carbonize.co.uk</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16406.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16406.php</link>
				<pubDate><![CDATA[Wed, 8 Jun 2005 23:01:22]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Whoops just fixed the error I had above. It should of been <br /> [code]$gb_post-&gt;name = &#40;isset&#40;$_POST&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $_POST&#91;&quot;gb_name&quot;&#93; &#58; '';[/code] in 2.3.x  :oops:]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16407.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16407.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 00:16:14]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" /> working really good now! thanks for the great mod and the fast fix.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16408.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16408.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 00:31:32]]> GMT</pubDate>
				<author><![CDATA[ fng]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="fng"]I have included the mod into one of my guestbooks, including the error fix but now i'm getting a<br /> Guestbook - Error  	 <br /> You forgot to fill in the Name field. Please correct it and re-submit.<br /> <br /> i''m running ad_guestbook 2.3.1 and double checked all the changes, of course i put in a name in the name field as well as the human verification check.<br /> <br /> Any ideas?[/quote]<br /> <br /> I'm getting this same error.  <img src="https://proxy2.de/forum//images/smilies/0a4d7238daa496a758252d0a2b1a1384.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16409.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16409.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 01:46:18]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Check the updated version of the instructions at the top.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16410.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16410.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 01:49:51]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Carbonize, even though my guestbook says it's 2.3.1 the coding in addentry.php looks like this:<br /> $gb_post-&gt;name = (isset($HTTP_POST_VARS["name"])) ? $HTTP_POST_VARS["name"] : ''; <br /> <br /> instead of this:<br /> $gb_post-&gt;name = (isset($_POST["gb_name"])) ? $_POST["gb_name"] : '';]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16411.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16411.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 01:55:26]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Actually 2.3.1 should say<br /> [code]$gb_post-&gt;name = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93; &#58; '';[/code]<br /> <br /> Looks like I will have to alter that bit so it has sections for 2.2, 2.3.1 and 2.3.2 :|]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16412.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16412.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 02:12:50]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks, I'll go give that a try.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16413.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16413.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 02:15:09]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This is what I did and I'm still getting the error:<br /> <br /> $gb_post-&gt;bottest = (isset($HTTP_POST_VARS["bottest"])) ? $HTTP_POST_VARS["bottest"] : ''; <br />     $gb_post-&gt;name = (isset($HTTP_POST_VARS["gb_name"])) ? $HTTP_POST_VARS["gb_name"] : '';]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16414.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16414.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 02:22:51]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ got a link?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16415.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16415.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 02:45:26]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ <a class="snap_shots" href="http://www.dowitstudio.com/AdvancedGuestBook/" target="_blank" rel="nofollow">http://www.dowitstudio.com/AdvancedGuestBook/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16416.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16416.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 02:49:55]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ah you messed up the form.php file. Send me an email and I will send you a fixed form.php.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16417.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16417.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 03:02:18]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ And you need to open email.php and add [b]border="0"[/b] to the image tag.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16418.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16418.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 03:07:53]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]And you need to open email.php and add [b]border="0"[/b] to the image tag.[/quote]<br /> <br /> Where do I insert that in the email.php?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16420.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16420.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 03:55:41]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ok just added fix for when they preview the entry.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16444.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16444.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 17:41:52]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>parse error</title>
				<description><![CDATA[ Sorry if this is stupid but I'm still learning html.<br /> <br /> When I click on sign the guest book i get:<br /> <br /> Parse error: parse error, unexpected T_STRING in /home/juddhoo/public_html/guestbook/lib/add.class.php on line 191]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16450.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16450.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 20:09:30]]> GMT</pubDate>
				<author><![CDATA[ soundoholic]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ email me the file in question.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16452.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16452.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 20:11:23]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Somehow you messed the file up and added extra characters<br /> [code]† † †$this-&gt;bottest = addslashes&#40;$this-&gt;bottest&#41;;<br /> † † †$this-&gt;$bottestanswer = addslashes&#40;$this-&gt;$bottestanswer&#41;;<br /> † † &#125;[/code]<br /> I have fixed it and sent it back to you.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16453.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16453.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 20:20:34]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thank you!!!!<br /> <br /> Now that is service!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16454.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16454.php</link>
				<pubDate><![CDATA[Thu, 9 Jun 2005 20:24:26]]> GMT</pubDate>
				<author><![CDATA[ soundoholic]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]And you need to open email.php and add [b]border="0"[/b] to the image tag.[/quote]<br /> <br /> Thanks, I pasted this to my email.php. I'm still getting the same error from the messed up form.php file.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16462.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16462.php</link>
				<pubDate><![CDATA[Fri, 10 Jun 2005 01:18:11]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I got your form.php and replaced mine with yours. Still getting the error message.  <img src="https://proxy2.de/forum//images/smilies/0a4d7238daa496a758252d0a2b1a1384.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16463.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16463.php</link>
				<pubDate><![CDATA[Fri, 10 Jun 2005 01:40:06]]> GMT</pubDate>
				<author><![CDATA[ Lady Rando]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ In your addentry.php do you have <br /> [code]$gb_post-&gt;name = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;gb_name&quot;&#93; &#58; '';[/code]<br /> which is what you soild have or do you have<br /> [code]$gb_post-&gt;name = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;name&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;name&quot;&#93; &#58; '';[/code]<br /> which only 2.2 users should have.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16473.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16473.php</link>
				<pubDate><![CDATA[Fri, 10 Jun 2005 10:53:19]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ok just fixed a minor typo I had where I had put $this-&gt;$bot when it should just be $this-&gt;bot. Anyway I know it is now working fine as I have implemented it on my sites guestbook.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16474.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16474.php</link>
				<pubDate><![CDATA[Fri, 10 Jun 2005 11:05:37]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Human Verification Not a Required Field</title>
				<description><![CDATA[ Hi there!<br /> <br /> I made your changes to my guestbook, but the verification isn't a required field.  <br /> <br /> Any ideas what I missed?  I thought I got everthing.<br /> <br /> Is there a quick fix?<br /> <br /> Thanks in advance!<br /> <br /> KC O'Brien]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16542.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16542.php</link>
				<pubDate><![CDATA[Mon, 13 Jun 2005 19:51:05]]> GMT</pubDate>
				<author><![CDATA[ tienlung]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ hm yes javascript would be a good idea. it is a required field technically as you cannot post without it ;)<br /> <br /> open form.php and find<br /> [code] if&#40;document.book.gb_comment.value == &quot;&quot;&#41; &#123;[/code]<br /> and replace with<br /> [code] if&#40;document.book.bottest.value == &quot;&quot;&#41; &#123;<br />    alert&#40;&quot;$LANG&#91;ErrorPost2&#93;&quot;&#41;;<br />    document.book.bottest.focus&#40;&#41;;<br />    return false;<br />  &#125;<br />  if&#40;document.book.gb_comment.value == &quot;&quot;&#41; &#123;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16543.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16543.php</link>
				<pubDate><![CDATA[Mon, 13 Jun 2005 20:37:40]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Can't find the line of code in the 2.3.2 update form.php</title>
				<description><![CDATA[ I can't find that particular line of code in the most recent version of the form.php file.<br /> <br /> I've tried searching and I've gone through it manually...Do I need to upload a different version?<br /> <br /> TIA<br /> <br /> KC O'Brien]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16545.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16545.php</link>
				<pubDate><![CDATA[Mon, 13 Jun 2005 21:22:35]]> GMT</pubDate>
				<author><![CDATA[ tienlung]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ What version you using ?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16546.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16546.php</link>
				<pubDate><![CDATA[Mon, 13 Jun 2005 21:32:33]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ For 2.2<br /> <br /> open form.php and find<br /> [code] if&#40;document.book.comment.value == &quot;&quot;&#41; &#123;[/code]<br /> and replace with<br /> [code] if&#40;document.book.bottest.value == &quot;&quot;&#41; &#123;<br />    alert&#40;&quot;$LANG&#91;ErrorPost2&#93;&quot;&#41;;<br />    document.book.bottest.focus&#40;&#41;;<br />    return false;<br />  &#125;<br />  if&#40;document.book.comment.value == &quot;&quot;&#41; &#123;[/code]<br /> <br /> I made a mistake in my last post for 2.3.x which is now fixed.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16547.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16547.php</link>
				<pubDate><![CDATA[Mon, 13 Jun 2005 21:34:12]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>I've got to be missing something...</title>
				<description><![CDATA[ I made the changes you noted and I can still post without verification.  Could you give it a try...maybe it's just my browser??<br /> <br /> www.falkorboxers.com/comments/index.php<br /> <br /> TIA<br /> <br /> KC O'Brien]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16549.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16549.php</link>
				<pubDate><![CDATA[Tue, 14 Jun 2005 00:49:48]]> GMT</pubDate>
				<author><![CDATA[ tienlung]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Did you make all the changes required to add.class.php ?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16550.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16550.php</link>
				<pubDate><![CDATA[Tue, 14 Jun 2005 07:38:07]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I installed this mod on my 2.3.2 Guestbook and it seems to work.  One bug I did find, though... <br /> <br /> If you leave the verification word blank, a message window pops up saying that "You forgot to fill in the Message field. Please correct it and re-submit."<br /> <br /> Any advice on how to fix this?<br /> <br /> Thanks!   <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16562.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16562.php</link>
				<pubDate><![CDATA[Tue, 14 Jun 2005 18:34:16]]> GMT</pubDate>
				<author><![CDATA[ phark]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes I fixed that earlier today. You must of done the mod before then. Anyway open up form.php and replace<br /> [code]alert&#40;&quot;$LANG&#91;ErrorPost2&#93;&quot;&#41;;[/code]<br /> with<br /> [code]alert&#40;&quot;$LANG&#91;ErrorPost12&#93;&quot;&#41;;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16563.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16563.php</link>
				<pubDate><![CDATA[Tue, 14 Jun 2005 18:37:53]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks buddy... works like a charm now!   <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16564.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16564.php</link>
				<pubDate><![CDATA[Tue, 14 Jun 2005 18:54:09]]> GMT</pubDate>
				<author><![CDATA[ phark]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ In  2.3.1 it says look for that code so does that mean to replace with the codes in 2.3.x? It's not detailed enough. Some versions have full instructions.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16565.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16565.php</link>
				<pubDate><![CDATA[Tue, 14 Jun 2005 19:37:11]]> GMT</pubDate>
				<author><![CDATA[ sheena]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If it states 2.3.x then it applies to 2.3.1 and 2.3.2 but if it states a specific version then it is for that version only. There are some changes between 2.3.1 and 2.3.2 that I had to fit in.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16568.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16568.php</link>
				<pubDate><![CDATA[Tue, 14 Jun 2005 20:14:08]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I've tried the mod a few times, but always get the same results.  The headers for the guestbook change, taking away the date info, and the links to sign the guestbook and to go to the admin.<br /> <br /> Any ideas on what I'm doing wrong?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16637.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16637.php</link>
				<pubDate><![CDATA[Mon, 20 Jun 2005 20:51:20]]> GMT</pubDate>
				<author><![CDATA[ stoli]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Send me your form.php, addentry.php and add.class.php files.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16638.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16638.php</link>
				<pubDate><![CDATA[Mon, 20 Jun 2005 20:54:05]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Simple Human Test Repost ?</title>
				<description><![CDATA[ Carbon,<br /> Could you please edit your patch directions to correct the different errors/issues and then repost it here? It would make having to do this so much less of a pain in the *ss.<br /> <br /> Thanks,<br /> Gary Smith]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16652.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16652.php</link>
				<pubDate><![CDATA[Tue, 21 Jun 2005 17:09:42]]> GMT</pubDate>
				<author><![CDATA[ GarySmith]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Looked simple enough to me. Now rewritten which means I am not expecting any more emails/posts that it's not working.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16653.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16653.php</link>
				<pubDate><![CDATA[Tue, 21 Jun 2005 17:40:58]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ could someone possibly post the entire page of code, please? i can't seem to find some of the code to replace...<br /> also, is there any way to add a registration page for Advanced Guestbook 2.3.1? some stupid spammers are constantly posting poker links on our guestbook Y_Y]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16659.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16659.php</link>
				<pubDate><![CDATA[Tue, 21 Jun 2005 23:49:02]]> GMT</pubDate>
				<author><![CDATA[ Hso]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Hso"]could someone possibly post the entire page of code, please? i can't seem to find some of the code to replace...<br /> also, is there any way to add a registration page for Advanced Guestbook 2.3.1? some stupid spammers are constantly posting poker links on our guestbook Y_Y[/quote]<br /> <br /> If you would do some reading and use the [size="18"][color="red"][b]SEARCH[/b][/color][/size] function located at the top of the forums. You would see all sorts of ways to stop spammers.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16660.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16660.php</link>
				<pubDate><![CDATA[Wed, 22 Jun 2005 01:13:26]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ JTD,<br /> Please don't be condescending.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16662.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16662.php</link>
				<pubDate><![CDATA[Wed, 22 Jun 2005 03:45:19]]> GMT</pubDate>
				<author><![CDATA[ GarySmith]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="GarySmith"]JTD,<br /> Please don't be condescending.[/quote]<br /> <br /> <br /> Gary Smith please teach people how to use the [size="24"][color="red"][b]SEARCH[/b][/color][/size] button. Thats what the stickies that carb and aron have made so we dont have to constantly repeat ourselves!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16663.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16663.php</link>
				<pubDate><![CDATA[Wed, 22 Jun 2005 05:24:57]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title>addentry won't write to db after modifications</title>
				<description><![CDATA[ Hi there,<br /> <br /> I implemented the mods for human verification and all looked good until I tried to post a test message - no go. No error - just no entry to the book. I think I may have gotten lost in the lib/add.class.php mods for 2.3.1 - any suggestions? (Like the original file? I didn't keep a backup, of course  <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" /> )<br /> <br /> Thanks so much!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16691.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16691.php</link>
				<pubDate><![CDATA[Wed, 22 Jun 2005 22:32:25]]> GMT</pubDate>
				<author><![CDATA[ sunshine]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ get the original file and apply the mod to it again and then upload it replacing the old.<br /> see if that works.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16692.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16692.php</link>
				<pubDate><![CDATA[Wed, 22 Jun 2005 22:35:06]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Could someone point me in the right direction.  My problem is that if I enter a wrong verification word, it still posts.  If I enter the correct word, it posts like it's supposed to.  If I leave the line blank, I get the error message.  I've upgraded to 2.3.2 from 2.3.1, I've done the mod 3X, checked my chmod permissions and triple checked my pasting of the mod to the files.  I don't want someone to fix it for me, I can only learn by doing it myself, but I am just stuck.  Thanks much in advance.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16729.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16729.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 21:24:21]]> GMT</pubDate>
				<author><![CDATA[ electra]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Email me your addentry.php and add.class.php files. I wil check them and return them fixed and your original copies with the mistakes marked.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16730.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16730.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 21:29:02]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Email me your addentry.php and add.class.php files. I wil check them and return them fixed and your original copies with the mistakes marked.[/quote]<br /> <br /> If I had any money Carb' I'd send you some! <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16731.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16731.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 21:32:12]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Whoops my bad. I missed off one of the replacements when I did the rewrite :|<br /> <br /> in lib/add.class.php<br /> <br /> Now find[code]&#125; else &#123;<br />             $this-&gt;url = trim&#40;$this-&gt;url&#41;;[/code]<br /> <br /> Replace with[code]<br />         &#125; elseif &#40;$this-&gt;bottest == ''&#41; &#123;<br />                 return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;&quot;ErrorPost12&quot;&#93;&#41;;<br />             &#125; elseif &#40;strtolower&#40;$this-&gt;bottest&#41; != strtolower&#40;$this-&gt;bottestanswer&#41;&#41; &#123;<br />                 return $this-&gt;db-&gt;gb_error&#40;$this-&gt;db-&gt;LANG&#91;&quot;ErrorPost13&quot;&#93;&#41;;<br />         &#125; else &#123;<br />             $this-&gt;url = trim&#40;$this-&gt;url&#41;;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16732.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16732.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 22:02:40]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks Carbonize, you made my day.  I was pulling my hair out. <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16733.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16733.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 22:13:45]]> GMT</pubDate>
				<author><![CDATA[ electra]]></author>
			</item>
			<item>
				<title>Error message when trying to post</title>
				<description><![CDATA[ Hi! I'm running Adv. GB 2.3.1. I made all the corrections, including this last one to add.class.php, but when I try to add a new entry, I get the following message:<br /> Parse error: parse error, unexpected T_CONCAT_EQUAL in /home/httpd/vhosts/swampboogieband.com/httpdocs/guestbook/lib/add.class.php on line 398<br /> <br /> I think (maybe THAT's my problem! <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" /> ) I made all the substitutions correctly. Any suggestions would be greatly appreciated. And thank you SO much for helping us all out with these modifications and f/u assistance!<br /> <br /> Laura]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16734.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16734.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 22:35:53]]> GMT</pubDate>
				<author><![CDATA[ Ahroo]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Line 398. At a guess this is the HIDDEN stuff. Open add.class.php and paste in here for me everything from <br /> [code]&#125; else &#123;<br />             $HOST = '';[/code]<br /> to<br /> [code]if &#40;$this-&gt;image_file&#41; &#123;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16735.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16735.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 22:41:45]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>As requested...</title>
				<description><![CDATA[ This is what I have in that part of the file:<br /> <br />  } else {<br />             $HOST = '';<br />         }<br />         $HIDDEN = "&lt;input type=\"hidden\" name=\"gb_preview\" value=\"1\"&gt;\n";<br />         $HIDDEN .= "&lt;input type=\"hidden\" name=\"keycode\" value=\"".$_POST["keycode"]."\"&gt;";<br />         $HIDDEN .= "&lt;input type=\"hidden\" name=\"rand\" value=\"$Vrand\"&gt;\n"; //Hidden Random Value<br />         HIDDEN .= "&lt;input type=\"hidden\" name=\"gb_name\" value=\"".$this-&gt;name."\"&gt;\n"; <br /> $HIDDEN .= "&lt;input type=\"hidden\" name=\"bottest\" value=\"".$this-&gt;bottest."\"&gt;\n";<br />         $HIDDEN .= "&lt;input type=\"hidden\" name=\"gb_email\" value=\"".$this-&gt;email."\"&gt;\n";<br />         $HIDDEN .= "&lt;input type=\"hidden\" name=\"gb_url\" value=\"".$this-&gt;url."\"&gt;\n";<br />         $HIDDEN .= "&lt;input type=\"hidden\" name=\"gb_comment\" value=\"".$this-&gt;comment."\"&gt;\n";<br />         $HIDDEN .= "&lt;input type=\"hidden\" name=\"gb_location\" value=\"".$this-&gt;location."\"&gt;\n";<br />         if ($this-&gt;image_file) {<br /> <br /> <br /> Thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16736.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16736.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 23:13:44]]> GMT</pubDate>
				<author><![CDATA[ Ahroo]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ HIDDEN .= "&lt;input type=\"hidden\" name=\"gb_name\" value=\"".$this-&gt;name."\"&gt;\n"; <br /> <br /> should be<br /> <br /> $HIDDEN .= "&lt;input type=\"hidden\" name=\"gb_name\" value=\"".$this-&gt;name."\"&gt;\n";]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16738.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16738.php</link>
				<pubDate><![CDATA[Thu, 23 Jun 2005 23:47:05]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>DUH!!!!!</title>
				<description><![CDATA[ Thanks! And I thought I had proof-read it so carefully <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" /> . Amazing what one little "$" can do!<br /> <br /> But here's another question. All of the recent spam I've gotten the last few days has been as added "comments" to someone else's original message, and these modifications don't require any verifications to add a comment. Is there some way that can be added?<br /> <br /> Again, thank you VERY much for all of your help!<br /> <br /> Laura]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16740.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16740.php</link>
				<pubDate><![CDATA[Fri, 24 Jun 2005 00:04:17]]> GMT</pubDate>
				<author><![CDATA[ Ahroo]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ There is no need to write a mod to do that as there already is the option to password protect comments to posts. You could simply edit the comments form to show a question to which the password is the answer.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16741.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16741.php</link>
				<pubDate><![CDATA[Fri, 24 Jun 2005 07:34:33]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Not having any idea as to what I am doing with php, I tried to change the comment.php by adding the following line, thinking it might direct the poster to the test:<br /> $gb_com-&gt;bottest = (isset($HTTP_POST_VARS["bottest"])) ? $HTTP_POST_VARS["bottest"] : '';<br /> <br /> It did not work! So, I'm afraid I have to ask for just a bit more hand-holding and more specific info for what I need to add/change to the comment.php file (and/or other files) to add the verifications there. Once again, I was flooded this morning with spam comments.<br /> <br /> Thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16747.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16747.php</link>
				<pubDate><![CDATA[Fri, 24 Jun 2005 14:52:29]]> GMT</pubDate>
				<author><![CDATA[ Ahroo]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ As I said you do not need to do anything to the comments as you can password protect them via the General Settings section of the admin.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16748.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16748.php</link>
				<pubDate><![CDATA[Fri, 24 Jun 2005 14:58:52]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Sorry - I misunderstood. I made the change and it now requires a password, so hopefully that will keep all of this spam out. Thank you again for your help and patience!<br /> <br /> Laura]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16750.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16750.php</link>
				<pubDate><![CDATA[Fri, 24 Jun 2005 15:25:04]]> GMT</pubDate>
				<author><![CDATA[ Ahroo]]></author>
			</item>
			<item>
				<title>Re: Adding a simple human verification test</title>
				<description><![CDATA[ [quote="Carbonize"]Ok after numerous requests I have decided to write this mod to let you add a test to make sure the poster is human. It's not infallible and will not stop human posters from spamming. <br /> [/quote]<br /> <br /> Hi Carbonize,<br /> <br /> Thank you.  We are running guestbook 2.2 and have implemented both the admin and form ... solutions on the guestbook.  So hopefully<br /> we will see an end to all the spam generated by scripts.... <br /> <br />  <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16774.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16774.php</link>
				<pubDate><![CDATA[Sun, 26 Jun 2005 15:56:33]]> GMT</pubDate>
				<author><![CDATA[ johnny_r]]></author>
			</item>
			<item>
				<title>Page clears on input ????</title>
				<description><![CDATA[ I have just added the human verification by changing the code as shown, but I have hit a snag.<br /> <br /> Whenever I try to input a new message into the guestbook it simply clears without accepting the comments. <br /> <br /> There is no error the page just simply resets.<br /> <br /> If I try to omit any information I get the usual error messages or if I try to omit the human verification word, it throws up the proper error message.<br /> <br /> If I even put the wrong verification word in the page clears just the same<br /> <br /> I am using version 2.3.1 and have double checked my inputs but can see no errors – although there obviously must be one somewhere.<br /> <br /> Any assistance would be greatly appreciated.<br /> <br /> Tony]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16830.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16830.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 12:50:34]]> GMT</pubDate>
				<author><![CDATA[ tony]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Do you have a link ?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16831.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16831.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 13:10:52]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Page clears on input ????</title>
				<description><![CDATA[ Thanks for the quick response !!!<br /> <br /> <br /> <a class="snap_shots" href="http://belljuniornetball.co.uk/guest/" target="_blank" rel="nofollow">http://belljuniornetball.co.uk/guest/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16832.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16832.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 13:15:14]]> GMT</pubDate>
				<author><![CDATA[ tony]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The problem lies in your addentry.php file. It's to do with the simple anti spam mod.<br /> <br /> I'm guessing you have<br /> [code]echo $gb_post-&gt;process&#40;$HTTP_POST_VARS&#91;&quot;gb_action&quot;&#93;&#41;;[/code]<br /> <br /> when it should be <br /> [code]echo $gb_post-&gt;process&#40;$_POST&#91;&quot;gb_actionWORD&quot;&#93;&#41;;[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16833.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16833.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 13:18:08]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Page clears on input ????</title>
				<description><![CDATA[ I have changed the line you quoted <br /> <br /> using both the actual word 'WORD' and my verification word 'BELLJUNIOR'<br /> <br /> e.g.<br /> echo $gb_post-&gt;process($_POST["gb_actionWORD"]); <br />  <br /> and<br /> <br /> echo $gb_post-&gt;process($_POST["gb_actionBELLJUNIOR"]); <br /> <br /> but i still get same results]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16834.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16834.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 13:30:37]]> GMT</pubDate>
				<author><![CDATA[ tony]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ it should be just BELL as thats what you have in your form.php. [code]echo $gb_post-&gt;process&#40;$_POST&#91;&quot;gb_actionBELL&quot;&#93;&#41;; [/code]<br /> <br /> On a different note you need to open config.inc.php and replace[code]$GB_PG&#91;'base_url'&#93; = '';[/code]<br /> <br /> with[code]$GB_PG&#91;'base_url'&#93; = 'http&#58;//belljuniornetball.co.uk/guest';[/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16835.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16835.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 13:40:19]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ lol almost thought you were a site for my old school when I saw the school name. Anyway on a different note your site's main page is seriously messed up on Firefox/Mozilla.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16836.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16836.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 13:44:42]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I changed both lines in my form.php to say BELLJUNIOR<br /> <br /> but still no sucess<br /> <br /> I have also changed my defualt URL]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16837.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16837.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 14:01:50]]> GMT</pubDate>
				<author><![CDATA[ tony]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I must thank you for all your assistance it is much appreciated!!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16838.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16838.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 14:03:02]]> GMT</pubDate>
				<author><![CDATA[ tony]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Problem sorted with expert adivse from Carbonize<br /> <br /> Many Thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16842.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16842.php</link>
				<pubDate><![CDATA[Thu, 30 Jun 2005 21:27:36]]> GMT</pubDate>
				<author><![CDATA[ tony]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hello there,<br /> <br /> I've been busy with this topic all day, but I can't seem to get it right. I did make the changes that are all over this thread I believe, but I still get the message: You forgot to fill in the Human Verification field. Please correct it and re-submit.<br /> <br /> Please help me, I'm just a baby in this php stuff.... <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" /> <br /> <br /> There are so many messages here and my english is just basic....I hope there is someone that wants to look at my files?<br /> <br /> Greetings from Holland,<br /> Delarossa]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16868.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16868.php</link>
				<pubDate><![CDATA[Sun, 3 Jul 2005 14:33:11]]> GMT</pubDate>
				<author><![CDATA[ Delarossa]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ the only post you need to read is the first post as that is the instructions as simply as they can be put. Email me your addentry.php and a link to your site.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16869.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16869.php</link>
				<pubDate><![CDATA[Sun, 3 Jul 2005 16:10:32]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ as i was getting tired of the mass spamming of my guestbook, i've applied all the modifications mentioned on this forum. Didnt stop it. I now added the human verification, and i thought that would finally stop them. To my suprise, 3 more entries appeared in my [url=http://ucpzone.com/madagascar/guestbook2]guestbook[/url] today.<br /> Im wondering, are these bots, or are there actually such lame people spamming personally?<br /> Also i wondered, is there a possibility to take out the homepage field? That would make spamming kinda useless..]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16983.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16983.php</link>
				<pubDate><![CDATA[Fri, 8 Jul 2005 21:18:34]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No taking out the homepage field would not stop spamming. Check this sites guestbook to see. If you are still getting spam after implementing the Human Verification it is down to one of three things<br /> <br /> 1 - They are being posted manually (rare but does happen).<br /> 2 - You have a second, unmodded, guestbook set up using the same database tables (I made this mistake).<br /> 3 - You missed something out in the modification and it is not working.<br /> <br /> edit: Just looked and he's forgotten to remove the homepage field when he updated to 2.3.3 but for about a month he has not had it as an option.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16984.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16984.php</link>
				<pubDate><![CDATA[Fri, 8 Jul 2005 21:21:26]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ i have no other guestbook. Its unlikely i missed out something as i did the changes very carefullly and doublechecked it, so it must be manual spammers.<br /> -edit just looking at it, 2 identical postst both at different times cant be done by manual spammers. Is there any way somebody can see what's wrong?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/16985.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/16985.php</link>
				<pubDate><![CDATA[Fri, 8 Jul 2005 21:49:33]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title>word generator</title>
				<description><![CDATA[ Hello guys can some of you contribute on how to automate or randomize the word? (default: "armadillo")<br /> <br /> please help! <br /> <br /> Thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17018.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17018.php</link>
				<pubDate><![CDATA[Mon, 11 Jul 2005 11:50:08]]> GMT</pubDate>
				<author><![CDATA[ jatsss]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This would not stop the spamming. If anything it would just be as simple. Right now all a spammer has to do is send the answer. To make it randomised we would have to send a marker to explain to the script which question/answer we are using and all the spammers would have to do is send the marker for the answer they are sending.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17020.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17020.php</link>
				<pubDate><![CDATA[Mon, 11 Jul 2005 16:59:57]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Re: word generator</title>
				<description><![CDATA[ [quote="jatsss"]Hello guys can some of you contribute on how to automate or randomize the word? (default: "armadillo")<br /> <br /> please help! <br /> <br /> Thanks[/quote]<br /> <br /> Maybe I'm not understanding your question completely but it should be possible using CAPTCHA.<br /> <br /> I integrated the VeriWord CAPTCHA class into Advanced Guestbook and went from ~20 Spams a day to 2-3 a month.<br /> <br /> Here's the link:<br /> <a class="snap_shots" href="http://www.phpclasses.org/browse/package/1768.html" target="_blank" rel="nofollow">http://www.phpclasses.org/browse/package/1768.html</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17024.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17024.php</link>
				<pubDate><![CDATA[Mon, 11 Jul 2005 18:04:30]]> GMT</pubDate>
				<author><![CDATA[ BassX]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ There already is an image verification mod for the guestbook. The reason I chose to tell people to use this method is because this was easier to integrate and not all hosts have GD support.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17026.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17026.php</link>
				<pubDate><![CDATA[Mon, 11 Jul 2005 18:40:35]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thank you for this, Carbonize. I have added it to both of my guestbooks and for the first time I've gone 24 hours without spam being added. [img]http://photos.imageevent.com/takara_soong/smilies/GiveFlowers.gif[/img]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17060.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17060.php</link>
				<pubDate><![CDATA[Fri, 15 Jul 2005 07:21:18]]> GMT</pubDate>
				<author><![CDATA[ Takara]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi can you pleae help me. <br /> <br /> I have implemeented the Human verification and posting main messages is now protected. However, if I try and place a comment I get the following message:<br /> <br /> <br /> Warning: Cannot modify header information - headers already sent by (output started at /home/chri172/public_html/forum/lang/english.php:110) in /home/chri172/public_html/forum/lib/comment.class.php on line 152<br /> <br /> I can;t find an error. <br /> <br /> By the way I'm using version 2.2<br /> <br /> Any help most greatful  <img src="https://proxy2.de/forum//images/smilies/136dd33cba83140c7ce38db096d05aed.gif" /> <br /> <br /> Thanks<br /> Chris]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17118.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17118.php</link>
				<pubDate><![CDATA[Tue, 19 Jul 2005 16:28:31]]> GMT</pubDate>
				<author><![CDATA[ ChrisFlyer]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ How did you edit the language file because you have ended up with some space or new lines after the closing ?&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17119.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17119.php</link>
				<pubDate><![CDATA[Tue, 19 Jul 2005 17:13:06]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The Warning: Cannot modify header information - headers already sent by (output started at . . .<br /> <br /> Is usually caused by a blank line or "white space" at the end of an edited file.<br /> <br /> Look for this in both the files mentioned in the error message]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17120.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17120.php</link>
				<pubDate><![CDATA[Tue, 19 Jul 2005 17:20:20]]> GMT</pubDate>
				<author><![CDATA[ fatjacK]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ sorry carbonize crossed posts there<br /> I'll butt out<br /> <br />  <img src="https://proxy2.de/forum//images/smilies/499fd50bc713bfcdf2ab5a23c00c2d62.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17121.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17121.php</link>
				<pubDate><![CDATA[Tue, 19 Jul 2005 17:22:05]]> GMT</pubDate>
				<author><![CDATA[ fatjacK]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Your help was valid so no need to apologise.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17122.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17122.php</link>
				<pubDate><![CDATA[Tue, 19 Jul 2005 17:37:28]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Warning message</title>
				<description><![CDATA[ Thanks for your speedy comments. <br /> <br /> The error was indeed blank lines at the end of my edited files.<br /> <br /> Many thanks for the speedy response.   <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17123.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17123.php</link>
				<pubDate><![CDATA[Tue, 19 Jul 2005 17:57:54]]> GMT</pubDate>
				<author><![CDATA[ ChrisFlyer]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ i added the human verification but it got only worse...got about 60 spammers in the last 2 days! <br /> Is there anyway i can verify what i've done wrong?<br /> <br /> Guestbook location<br /> <a class="snap_shots" href="http://www.ucpzone.com/madagascar/guestbook2" target="_blank" rel="nofollow">http://www.ucpzone.com/madagascar/guestbook2</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17440.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17440.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 15:01:59]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ That is the only copy of Advanced Guestbook on your server?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17441.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17441.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 15:04:04]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ yes<br /> btw manually deleted all the entries in case you wondered where they are]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17442.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17442.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 15:06:48]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Change the verification question/answer. Usually when they get past this test it's because the person has a second guestbook set up pointing to the same database.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17443.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17443.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 15:19:09]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ i set the question on the day i installed the verificationmod, but the spam never stopped, even not on the first day. They seem to get past it nomatter what the answer is. <br /> So i must have set up something wrong. Problem is i dont know where to look.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17444.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17444.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 16:06:20]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I tested it with the wrong word and I got the error message as I should.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17445.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17445.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 17:27:01]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ yep i know its supposed to work...but i get spammed like crazy. Do you have ANY idea what's up? Im absolutely sure i have only one database installed. And these are really not manual spammers.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17446.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17446.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 18:28:54]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ i'm browsing the database, and they appear in the same database as the other entries (sorry if this sounds too obvious im no expert) in the table book_data. Used http client: httpclient (<a class="snap_shots" href="http://www.phpclasses.org/httpclient" target="_blank" rel="nofollow">http://www.phpclasses.org/httpclient</a> $Revision: 1.40 $)]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17447.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17447.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 18:40:21]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No what I meant is that sometimes a person, for various reasons, has two copies of the advanced guestbok script on their server and has them both using the same database and tables.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17448.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17448.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 19:03:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ so if i would in some way rename the tables my guestbook is using the problem would be solved? or is this more difficult than i make it sound.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17449.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17449.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 19:13:05]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ you said you only have a single version of the guestbook script on your site so this is not the problem.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17452.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17452.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 19:34:40]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ two more entries just appeared.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17456.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17456.php</link>
				<pubDate><![CDATA[Wed, 3 Aug 2005 20:21:43]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ hello I've got problem with my guestbook after adding verification test some people can't write anthing in it <img src="https://proxy2.de/forum//images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" /> I really don't know why.... but can someone check my guest book??<br /> <br /> it's the link <a class="snap_shots" href="http://www.christiano.szu.pl/guestbook/" target="_blank" rel="nofollow">http://www.christiano.szu.pl/guestbook/</a> <br /> <br /> for make it easier for U <br /> [color="red"]Dopisz swoje zdanie..[/color] -&gt;&gt; means [color="red"]Sign the Guestbook[/color]<br /> <br /> verification word is [color="blue"]christiano[/color] <br /> <br /> please check it and help me<img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17461.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17461.php</link>
				<pubDate><![CDATA[Thu, 4 Aug 2005 13:25:36]]> GMT</pubDate>
				<author><![CDATA[ christiano]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Had a look and saw no problems. Posted fine for me. Are they getting an error message?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17463.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17463.php</link>
				<pubDate><![CDATA[Thu, 4 Aug 2005 14:57:03]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ dont want to open a new thread for this but..why is it possible somebody just posted a html link into the message field while i disabled html?<br /> <br /> <a class="snap_shots" href="http://www.ucpzone.com/madagascar/guestbook2/" target="_blank" rel="nofollow">http://www.ucpzone.com/madagascar/guestbook2/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17498.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17498.php</link>
				<pubDate><![CDATA[Sun, 7 Aug 2005 11:15:30]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Wow there's a lot of spam entries in there. Anyway you may have HTML disabled but you do have AGcode enabled. They simply used [url=http://www.someaddress.com]someaddress.com[/url]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17499.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17499.php</link>
				<pubDate><![CDATA[Sun, 7 Aug 2005 11:29:02]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ many spam, yes i know..and i maneally delete about 20 of them on a daily basis <img src="https://proxy2.de/forum//images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" /><br /> <br /> Thanks for the advice.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17500.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17500.php</link>
				<pubDate><![CDATA[Sun, 7 Aug 2005 11:59:30]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You only just added the human verification?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17501.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17501.php</link>
				<pubDate><![CDATA[Sun, 7 Aug 2005 12:03:39]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ no, months ago..see my previous msgs in this same thread.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17506.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17506.php</link>
				<pubDate><![CDATA[Sun, 7 Aug 2005 16:55:12]]> GMT</pubDate>
				<author><![CDATA[ errorist]]></author>
			</item>
			<item>
				<title>Error Message after Human Verification Test added</title>
				<description><![CDATA[ Hi there.  I added the Human Verification test to my guestbook.  I believe I have AG 2.3.3. (I didn't see specific instructions for 2.3.3. so I used the ones for 2.3.2 I think - hope that isn't wrong)<br /> <br /> Anyway, I made the changes to the code, and now I get an error message that says "Guestbook - Error   <br /> You forgot to fill in the Human Verification field. Please correct it and re-submit. "<br /> <br /> I filled in the field with the correct word, but it's not seeing it.  Any idea what I did wrong and how I can fix it?<br /> <br /> ~Noelle]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17535.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17535.php</link>
				<pubDate><![CDATA[Tue, 9 Aug 2005 15:03:28]]> GMT</pubDate>
				<author><![CDATA[ NoeyG]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ OK, I noticed that in the General Settings section of the admin panel, there is something called comments password.  I thought about this and figured that maybe the reason there were no specific instructions for AG 2.3.3 was because the feature was included.  So, I changed everything back to the original code and then enabled the comment password.  My guestbook is working again, but there seems to be no password needed to post.  <br /> <br /> Can you tell I have no clue what I'm doing.  <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />  Sorry.  What should I do next?  I was thinking about upgrading to the Lazarus GB, but I'm sort of afraid of doing this.  I don't want to have to start from scratch as far as the layout and other cosmetic changes I made.<br /> <br /> ~Noelle]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17536.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17536.php</link>
				<pubDate><![CDATA[Tue, 9 Aug 2005 17:48:18]]> GMT</pubDate>
				<author><![CDATA[ NoeyG]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ .Comment password is for COMMENTS not ENTRIES.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17537.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17537.php</link>
				<pubDate><![CDATA[Tue, 9 Aug 2005 18:53:20]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Spam mod seems to be working...</title>
				<description><![CDATA[ Hi Carbonize,<br /> I just wanted to mention that I followed your directions and seem to be having no problem with my newly upgraded spam protection.  I'll keep my fingers crossed!<br /> <br /> Thank you for your clear instructions.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17539.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17539.php</link>
				<pubDate><![CDATA[Tue, 9 Aug 2005 23:05:06]]> GMT</pubDate>
				<author><![CDATA[ ndscott]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ OK, I started from scratch and re-did the human verification mod and figured out what I had done wrong.  All is well.  It works great.<br /> <br /> Thanks!<br /> Noelle]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17543.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17543.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 00:40:52]]> GMT</pubDate>
				<author><![CDATA[ NoeyG]]></author>
			</item>
			<item>
				<title>I have a short between the keyboard and chair</title>
				<description><![CDATA[ Hi,<br /> <br /> I installed the Human Verification mod, but I screwed it up somewhere.  Not being a php expert, I am also in the midst of a multiple sclerosis attack that makes my brain hit on about two cylinders (our of 8 total).  LOL  My client's site has been inundated by spammers, and one has even modified the admin login.  Thanks to Carbonize's reset program, I was able to recover the admin login though.  <br /> <br /> The site is <a class="snap_shots" href="http://www.treyhensley.com" target="_blank" rel="nofollow">http://www.treyhensley.com</a> and the guestbook is at <a class="snap_shots" href="http://www.treyhensley.com/agb" target="_blank" rel="nofollow">http://www.treyhensley.com/agb</a> .  If a guest tries to sign the guestbook, he gets the following error messages...<br /> <br /> [b]Warning: main(/home/treyhens/public_html/agb/lib/add.class.php): failed to open stream: No such file or directory in /home/treyhens/public_html/agb/addentry.php on line 9<br /> <br /> Warning: main(): Failed opening '/home/treyhens/public_html/agb/lib/add.class.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/treyhens/public_html/agb/addentry.php on line 9<br /> <br /> Fatal error: Cannot instantiate non-existent class: addentry in /home/treyhens/public_html/agb/addentry.php on line 11[/b]<br /> <br /> <br /> Normally, I could sort this out myself, but my brain is not working very well now.<br /> <br /> Bill K.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17549.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17549.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 14:40:14]]> GMT</pubDate>
				<author><![CDATA[ integam]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This is the clue as to whats wrong. [b][u] No such file or directory in [/u][/b]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17550.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17550.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 15:43:05]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title>Forget It</title>
				<description><![CDATA[ I will just replace the guestbook with a different program.  That is the problem with these forums... there are a few that take it upon themselves to be the arrogant jerks with all the answers.  I know to search, a**hole.  I know to look over the forums.  I also know that I have a client who needs answers, and my health is not conducive to that right now.  <br /> <br /> My apologies, Carbonize, but I'll look elsewhere.<br /> <br /> Bill K.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17551.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17551.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 15:56:02]]> GMT</pubDate>
				<author><![CDATA[ integam]]></author>
			</item>
			<item>
				<title>Re: Forget It</title>
				<description><![CDATA[ [quote="integam"]I will just replace the guestbook with a different program.  That is the problem with these forums... there are a few that take it upon themselves to be the arrogant jerks with all the answers.  I know to search, a**hole.  I know to look over the forums.  I also know that I have a client who needs answers, and my health is not conducive to that right now.  <br /> <br /> My apologies, Carbonize, but I'll look elsewhere.<br /> <br /> Bill K.[/quote]<br /> <br /> Did I tell you to search? No I didnt! Did I point out what your problem is? Yes I did! Seems to me you are the one with the atttitude problem. This is what I said.<br /> [quote][b][u]No such file or directory in [/u][/b][/quote]<br /> <br /> Which was referring to this.<br /> <br /> [quote][b][u]Warning: main(/home/treyhens/public_html/agb/lib/add.class.php): failed to open stream: No such file or directory in /home/treyhens/public_html/agb/addentry.php on line 9 [/u][/b][/quote]<br /> <br /> Now get off your high horse!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17552.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17552.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 16:03:32]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title>Last Post</title>
				<description><![CDATA[ You didn't tell me to search???  Read your signature, bozo.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17553.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17553.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 16:08:11]]> GMT</pubDate>
				<author><![CDATA[ integam]]></author>
			</item>
			<item>
				<title>Re: Last Post</title>
				<description><![CDATA[ [quote="integam"]You didn't tell me to search???  Read your signature, bozo.[/quote]<br /> <br /> That is my signature you are correct. Was it directed at you? No it wasn't! Can it be directed at you? Yes it can. [size="24"][color="red"][b][u]Hey integam Go SEARCH for your answer pee brain![/u][/b][/color][/size] Are you happy now. It is now directed solely at you. Now may I suggest since you have such a sensitive nature you go visit a site which my better suit you. <a class="snap_shots" href="http://www.disney.com" target="_blank" rel="nofollow">http://www.disney.com</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17554.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17554.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 16:15:16]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No problem.  Have a good day.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17555.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17555.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 16:25:27]]> GMT</pubDate>
				<author><![CDATA[ integam]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="JTD"]This is the clue as to whats wrong. [b][u] No such file or directory in [/u][/b][/quote]<br /> <br /> How was that being helpful? Integam said he wasn't an expert at PHP, if you couldn't have offered help, perhaps you should let Carbonize take care of it when he gets a chance.<br /> <br /> By the way, JTD it is not necessary to shout at someone.  It reaks unprofessionalism.  While I know you are not a professional, these boards should still be respected as such as should their users.<br /> <br /> ~Noelle]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17556.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17556.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 16:25:48]]> GMT</pubDate>
				<author><![CDATA[ NoeyG]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ As stated above your add.class.php file is missing. You must not of uploaded it to the lib folder.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17559.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17559.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 18:40:23]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks, Carbonize.  Actually, it wasn't missing... it had been renamed for some strange reason.  It was called add.class.php.up<br /> <br /> Anyway, I loaded your Lazarusgb files in a new guestbook installation, and it seems to be working very efficiently.  Another member of your forum pm'ed me with the Lazarus info and website.<br /> <br /> Thanks again.<br /> <br /> Bill K.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17560.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17560.php</link>
				<pubDate><![CDATA[Wed, 10 Aug 2005 18:46:06]]> GMT</pubDate>
				<author><![CDATA[ integam]]></author>
			</item>
			<item>
				<title>template files do not exist?</title>
				<description><![CDATA[ Heloo,<br /> <br /> I'm fairly new to php and I'm using the Advanced Guestbook 2.3.1 provided from my hosting provider.<br /> Since I'm getting spamed I would like to put a verification test on my guestbook. I found you article and tried to find the files in administration. I only found "form.php" and all the other ones do not existy (i.e addentry.php, lib/add.class.php). Where will I find them, or is this something I can;t do because I'm just using the scriopts provided??<br /> <br /> Thanks very much for your help.<br /> otti]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17862.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17862.php</link>
				<pubDate><![CDATA[Thu, 1 Sep 2005 08:27:59]]> GMT</pubDate>
				<author><![CDATA[ Otti]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ addentry.php is in the guestbook folder, add.class.php is in the lib folder]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17863.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17863.php</link>
				<pubDate><![CDATA[Thu, 1 Sep 2005 08:31:17]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Error</title>
				<description><![CDATA[ Carbonize,<br /> <br /> I've been getting flooded with spam in my guestbook lately, so I tried adding the human verification. I keep getting errors whenever I go to the sign in page though.<br /> <br /> Here's what it says:<br /> <br /> Parse error: parse error in /home/virtual/site10/fst/var/www/html/wedding/guestbook/lib/add.class.php on line 191<br /> <br /> Fatal error: Cannot instantiate non-existent class: addentry in /home/virtual/site10/fst/var/www/html/wedding/guestbook/addentry.php on line 11<br /> <br /> I tried going through everything twice, but it keeps giving me the error. I'm using 2.3.2. The link to my guestbook is: <a class="snap_shots" href="http://www.worldofjeff.net/wedding/guestbook/index.php" target="_blank" rel="nofollow">http://www.worldofjeff.net/wedding/guestbook/index.php</a><br /> <br /> Any help you could give would be appreciated.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17864.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17864.php</link>
				<pubDate><![CDATA[Thu, 1 Sep 2005 10:45:03]]> GMT</pubDate>
				<author><![CDATA[ worldofjeff]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Sounds like your add.class.php file has either been renamed or deleted. Seems to have been a spate lately of them getting renamed to add.class.php.up]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17869.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17869.php</link>
				<pubDate><![CDATA[Thu, 1 Sep 2005 13:15:07]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ How can I fix this error?:<br /> Parse error: parse error, unexpected T_ELSEIF in /..../guestbook/lib/add.class.php on line 201<br /> <br /> It shows up if I want to sign the guestbook.<br /> url to the guestbook.<br /> <a class="snap_shots" href="http://www.milaviapress.com/guestbook/index.php" target="_blank" rel="nofollow">http://www.milaviapress.com/guestbook/index.php</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17881.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17881.php</link>
				<pubDate><![CDATA[Fri, 2 Sep 2005 14:16:23]]> GMT</pubDate>
				<author><![CDATA[ Airpower]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Shouldn't even be a elseif on that line. Which version of the guestbook are you using and can you post your add.entry.php file.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17882.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17882.php</link>
				<pubDate><![CDATA[Fri, 2 Sep 2005 16:12:39]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ i'm using Advanced Guestbook 2.3.1<br /> <br /> <br /> &lt;?php<br /> $include_path = dirname(__FILE__);<br /> include_once $include_path."/admin/config.inc.php";<br /> include_once $include_path."/lib/$DB_CLASS";<br /> include_once $include_path."/lib/image.class.php";<br /> include_once $include_path."/lib/template.class.php";<br /> <br /> include_once $include_path."/lib/vars.class.php";<br /> include_once $include_path."/lib/add.class.php";<br /> <br /> $gb_post = new addentry($include_path);<br /> <br /> if (isset($_POST["gb_actionspamless"])) {<br />     $gb_post-&gt;name = (isset($HTTP_POST_VARS["gb_name"])) ? $HTTP_POST_VARS["gb_name"] : '';<br />     $gb_post-&gt;email = (isset($HTTP_POST_VARS["gb_email"])) ? $HTTP_POST_VARS["gb_email"] : '';<br />     $gb_post-&gt;url = (isset($HTTP_POST_VARS["gb_url"])) ? $HTTP_POST_VARS["gb_url"] : '';<br />     $gb_post-&gt;comment = (isset($HTTP_POST_VARS["gb_comment"])) ? $HTTP_POST_VARS["gb_comment"] : '';<br />     $gb_post-&gt;location = (isset($HTTP_POST_VARS["gb_location"])) ? $HTTP_POST_VARS["gb_location"] : '';<br />     $gb_post-&gt;icq = (isset($HTTP_POST_VARS["gb_icq"])) ? $HTTP_POST_VARS["gb_icq"] : '';<br />     $gb_post-&gt;aim = (isset($HTTP_POST_VARS["gb_aim"])) ? $HTTP_POST_VARS["gb_aim"] : '';<br />     $gb_post-&gt;gender = (isset($HTTP_POST_VARS["gb_gender"])) ? $HTTP_POST_VARS["gb_gender"] : '';<br />     $gb_post-&gt;userfile = (isset($HTTP_POST_FILES["userfile"]["tmp_name"]) &amp;&amp; $HTTP_POST_FILES["userfile"]["tmp_name"] != "") ? $HTTP_POST_FILES : '';<br />     $gb_post-&gt;user_img = (isset($HTTP_POST_VARS["gb_user_img"])) ? $HTTP_POST_VARS["gb_user_img"] : '';<br />     $gb_post-&gt;preview = (isset($HTTP_POST_VARS["gb_preview"])) ? 1 : 0;<br />     $gb_post-&gt;private = (isset($HTTP_POST_VARS["gb_private"])) ? 1 : 0;<br />     echo $gb_post-&gt;process($_POST["gb_actionspamless"]);<br /> } else {<br />     echo $gb_post-&gt;process();<br /> }]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17883.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17883.php</link>
				<pubDate><![CDATA[Fri, 2 Sep 2005 16:47:30]]> GMT</pubDate>
				<author><![CDATA[ Airpower]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Download 2.3.4 from this site and replace all your files EXCEPT admin/config.inc.php]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17885.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17885.php</link>
				<pubDate><![CDATA[Fri, 2 Sep 2005 17:56:12]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>add.class.php isn't missing or modified</title>
				<description><![CDATA[ The add.class.php file is there &amp; named correctly. I tried reloading it again just to be sure, but it's still not working. Any ideas?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17899.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17899.php</link>
				<pubDate><![CDATA[Sat, 3 Sep 2005 05:07:51]]> GMT</pubDate>
				<author><![CDATA[ worldofjeff]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Download 2.3.4 from this site and replace all your files EXCEPT admin/config.inc.php[/quote]<br /> I'm now running 2.3.4 but I have still the spam problem. Do I have to add the codes for the simple human verification test again?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17902.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17902.php</link>
				<pubDate><![CDATA[Sat, 3 Sep 2005 11:41:39]]> GMT</pubDate>
				<author><![CDATA[ Airpower]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Unfortunately yes but atleast now you are protected against 2 known exploits that existed in 2.3.1.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17903.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17903.php</link>
				<pubDate><![CDATA[Sat, 3 Sep 2005 11:46:26]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>New release?</title>
				<description><![CDATA[ When will these very valuable changes be incorporated into a new release?<br /> <br /> (Thanks for addressing this annoying issue!)<br /> <br /> BTW, there is a class to do graphic-driven human verification on the PHP classes site ([color="blue"][url]http://www.phpclasses.org/browse/package/1914.html[/url][/color]).  You may need an account to get the code. Haven't looked to see if the code is any good.   Also, there probably are other implementations on the other php snippets sights.<br /> <br /> Just thought I'd mention it.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17920.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17920.php</link>
				<pubDate><![CDATA[Sun, 4 Sep 2005 00:43:17]]> GMT</pubDate>
				<author><![CDATA[ Jim_at_BES]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I released a image verification (captcha) mod about 2 years ago. These mods (except the image verification)  are implemented into Lazarus but as to if he will implement them into AG I could not say.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17928.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17928.php</link>
				<pubDate><![CDATA[Sun, 4 Sep 2005 11:46:55]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Tnx for this mod, damn spammers can go to hell now <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/17930.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/17930.php</link>
				<pubDate><![CDATA[Sun, 4 Sep 2005 18:03:02]]> GMT</pubDate>
				<author><![CDATA[ Whitespliff]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Damned, 1 week &amp; I've got spam again, is there another way to keep the b*st*rds away?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18024.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18024.php</link>
				<pubDate><![CDATA[Sun, 11 Sep 2005 20:14:40]]> GMT</pubDate>
				<author><![CDATA[ Whitespliff]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Whitespliff"]Damned, 1 week &amp; I've got spam again, is there another way to keep the b*st*rds away?[/quote]<br /> <br /> Yea upgrade to Lazarus guestbook if you havnt already.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18031.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18031.php</link>
				<pubDate><![CDATA[Sun, 11 Sep 2005 20:24:13]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title>Error Message</title>
				<description><![CDATA[ I have made the changes to the files and when I go to sign the guestbook I get this error:<br /> <br /> Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/jenbrink/public_html/guestbook/lib/add.class.php on line 17<br /> <br /> (Line 17=    var $bottest = '';)<br /> <br /> <br /> class addentry {<br /> <br />     var $db;<br />     var $ip;<br />     var $include_path;<br />     var $template;<br />     var $name = '';<br />     var $bottest = '';<br />     var $bottestanswer = CEILINGS;<br /> <br /> I did remove the '  ' as noted : /* this is the answer to the question. It must contain no '  */<br /> <br /> I dont think that I missed anything  (?)<br /> <br /> Thanks for any help!!<br /> Link to guestbook:    <a class="snap_shots" href="http://sbceilings.us/guestbook/" target="_blank" rel="nofollow">http://sbceilings.us/guestbook/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18181.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18181.php</link>
				<pubDate><![CDATA[Mon, 26 Sep 2005 18:33:31]]> GMT</pubDate>
				<author><![CDATA[ jenbrink1]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No I mean the actual answer must contain no ' but it must be between two ']]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18182.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18182.php</link>
				<pubDate><![CDATA[Mon, 26 Sep 2005 18:45:33]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ OK. I wasnt sure so i did it both ways and still got the error.<br /> <br /> class addentry {<br /> <br />     var $db;<br />     var $ip;<br />     var $include_path;<br />     var $template;<br />     var $name = '';<br />     var $bottest = '';<br />     var $bottestanswer = 'CEILINGS';]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18183.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18183.php</link>
				<pubDate><![CDATA[Mon, 26 Sep 2005 18:50:06]]> GMT</pubDate>
				<author><![CDATA[ jenbrink1]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Jst to confirm that var $bottest = ''; is two ' and not a single " ?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18184.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18184.php</link>
				<pubDate><![CDATA[Mon, 26 Sep 2005 18:52:49]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes they are 2 single '<br /> not the " (inch or quote mark)]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18185.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18185.php</link>
				<pubDate><![CDATA[Mon, 26 Sep 2005 18:55:27]]> GMT</pubDate>
				<author><![CDATA[ jenbrink1]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ email me your add.class.php]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18186.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18186.php</link>
				<pubDate><![CDATA[Mon, 26 Sep 2005 18:56:06]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi, I added this but I have a new problem now.<br /> <br /> When i put in my email in as Spike@live2bmx.co.uk it comes up in the guestbook as Spike[at]live2bmx[dot]co[dot]uk<br /> <br /> what have I done wrong?<br /> <br /> my guestbook is<br /> <br /> <a class="snap_shots" href="http://www.live2bmx.co.uk/book.html" target="_blank" rel="nofollow">http://www.live2bmx.co.uk/book.html</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18286.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18286.php</link>
				<pubDate><![CDATA[Tue, 4 Oct 2005 22:51:11]]> GMT</pubDate>
				<author><![CDATA[ Spike]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ thats the way emails have been displayed since version 2.3.2]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18287.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18287.php</link>
				<pubDate><![CDATA[Tue, 4 Oct 2005 23:05:00]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Help</title>
				<description><![CDATA[ I guess that I just don't understand? I have two entrys in the code that say<br /> <br /> if(document.book.gb_comment.value =="") {<br /> <br /> One is ErrorPost1 and the other is ErrorPost2<br /> <br /> I am using 2.3.1<br /> <br /> PhP is not my forte.<br /> <br /> Doug]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18322.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18322.php</link>
				<pubDate><![CDATA[Fri, 7 Oct 2005 19:37:29]]> GMT</pubDate>
				<author><![CDATA[ Doug Farish]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Email me your addentry.php file. <a class="snap_shots" href="mailto:webmaster@carbonize.co.uk">webmaster@carbonize.co.uk</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18323.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18323.php</link>
				<pubDate><![CDATA[Fri, 7 Oct 2005 19:41:52]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks,<br /> <br /> Your a life saver.<br /> <br /> Doug]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18328.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18328.php</link>
				<pubDate><![CDATA[Fri, 7 Oct 2005 22:54:31]]> GMT</pubDate>
				<author><![CDATA[ Doug Farish]]></author>
			</item>
			<item>
				<title>Human Verification</title>
				<description><![CDATA[ I have Advance GuestBook 2.3.1 and followed the first set of instructions exact. I only changed the word Armadillo where applied, to my own word. It now works great and I have had no problems or errors whether I leave it blank, type it in wrong, or type it in correctly. I was having problems with spamming, and now I do not. Thank you!!   <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18334.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18334.php</link>
				<pubDate><![CDATA[Sun, 9 Oct 2005 01:26:02]]> GMT</pubDate>
				<author><![CDATA[ AtomBomb]]></author>
			</item>
			<item>
				<title>Missing Code?</title>
				<description><![CDATA[ OK... Don't freak out and get mad at me. I read the whole thread. All 11 pages. I have advanced guestbook 2.3.4 and am reciving a heap of spam. i want to install the human varification but can not find the code needed to be changed. are there different instuctions for this version? <br /> Thanks,<br /> Ryan<br /> www.gypsylounge.com]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18367.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18367.php</link>
				<pubDate><![CDATA[Thu, 13 Oct 2005 01:27:42]]> GMT</pubDate>
				<author><![CDATA[ gypsylounge]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No the instructions for 2.3.2 should also apply to 2.3.4]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18368.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18368.php</link>
				<pubDate><![CDATA[Thu, 13 Oct 2005 01:33:25]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Human Verification Word</title>
				<description><![CDATA[ I have installed the Human Verification code to my Advanced Guestbook 2.3.4 and it seems to work except for the fact that you can use any word in the verification field and the message will go through without going to the error message. What did I screw up this time???<br /> Thanks for the help!<br /> Ryan<br /> <br /> Why are these people spamming all of our guestbook’s? How do they find our guest books? I have tried to search for mine using Google but can't. Is there a word that is being registered with search bots that is making it easy to find our guestbook’s?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18371.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18371.php</link>
				<pubDate><![CDATA[Thu, 13 Oct 2005 14:34:30]]> GMT</pubDate>
				<author><![CDATA[ gypsylounge]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ They search Google for something like "Powered by advanced guestbook"]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18374.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18374.php</link>
				<pubDate><![CDATA[Thu, 13 Oct 2005 16:34:24]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ OK due to the amount of people appearing to have problems with these simple instructions I have added this to the required 2.3.4 files and uploaded them to <a class="snap_shots" href="http://carbonize.co.uk/AG/" target="_blank" rel="nofollow">http://carbonize.co.uk/AG/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18375.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18375.php</link>
				<pubDate><![CDATA[Thu, 13 Oct 2005 18:56:36]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Thank You</title>
				<description><![CDATA[ Thank you, Thank you, Thank you! It took a while to get it all working but no spam for a week!<br /> <br /> Ryan<br /> www.gypsylounge.com]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18431.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18431.php</link>
				<pubDate><![CDATA[Wed, 19 Oct 2005 02:20:04]]> GMT</pubDate>
				<author><![CDATA[ gypsylounge]]></author>
			</item>
			<item>
				<title>Thanks!</title>
				<description><![CDATA[ I registered here just to say THANKS!<br /> <br /> I was very tired of recieving TONS of spam. deleting it, and tracking down IP addresses to block them.<br /> <br /> I feel much better now  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18444.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18444.php</link>
				<pubDate><![CDATA[Wed, 19 Oct 2005 15:51:08]]> GMT</pubDate>
				<author><![CDATA[ Capella]]></author>
			</item>
			<item>
				<title>not yet successful</title>
				<description><![CDATA[ tried the corrections posted but now i get <br /> Parse error: parse error, unexpected T_ELSEIF in /home/bikeroo/public_html/guestbook/lib/add.class.php on line 201<br /> <br /> please help, as i seemed to have messed things up somehow.<br /> i can send the files over if needed.<br /> thanks<br /> <a class="snap_shots" href="mailto:archie.apostol@gmail.com">archie.apostol@gmail.com</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18482.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18482.php</link>
				<pubDate><![CDATA[Mon, 24 Oct 2005 08:14:45]]> GMT</pubDate>
				<author><![CDATA[ archieapostol]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This is why I modded some files already and made them available to download www.carbonize.co.uk/AG]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18484.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18484.php</link>
				<pubDate><![CDATA[Mon, 24 Oct 2005 13:43:29]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ a million thanks for the help<br /> everything works fine now.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18491.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18491.php</link>
				<pubDate><![CDATA[Tue, 25 Oct 2005 07:20:37]]> GMT</pubDate>
				<author><![CDATA[ archieapostol]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Carbon,<br /> thanks for your work!<br /> <br /> I modified all the files, including lang/italian.php because my gb is in italian.<br /> <br /> But my addentry screen displays no comment box to type in.<br /> <br /> Could you help, Please?<br /> <br /> Sure I've mistyped something...<br /> <br /> Thanx.<br /> <br /> <br /> The gb address is <a class="snap_shots" href="http://www.josephk.it/Guestbook/index.php" target="_blank" rel="nofollow">http://www.josephk.it/Guestbook/index.php</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18614.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18614.php</link>
				<pubDate><![CDATA[Mon, 7 Nov 2005 22:36:42]]> GMT</pubDate>
				<author><![CDATA[ josephk]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ 1 - upgrade to 2.3.4 by replacing all the files except admin/config.inc.php<br /> 2 - Goto www.carbonize.co.uk/AG where I have pre modded files.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18615.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18615.php</link>
				<pubDate><![CDATA[Mon, 7 Nov 2005 22:44:44]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanx Carbon!!!!<br /> <br /> All seems ok!!!<br /> <br /> You're Great!  <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" /> <br /> <br /> JK]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18617.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18617.php</link>
				<pubDate><![CDATA[Mon, 7 Nov 2005 23:58:44]]> GMT</pubDate>
				<author><![CDATA[ josephk]]></author>
			</item>
			<item>
				<title>Random verification text!</title>
				<description><![CDATA[ For those who want to have a random verification text, I made some addtions to the MOD which enables this!<br /> <br /> [b]BEFORE MAKING ANY CHANGES, TAKE BACKUP OF ALL THE FILES THAT WILL BE EDITED![/b]<br /> <br /> Follow the changes in the original MOD and [i]then[/i] follow the following instructions::<br /> <br /> <br /> [u]Open lang/English.php[/u]  (or the language file that you are using)<br /> <br /> Find<br /> [code]$months&#91;11&#93; = &quot;December&quot;;<br /> [/code]<br /> <br /> After Add<br /> [code]<br /> # BotTest<br /> <br /> $randomText = array&#40;&quot;ARMADILLA&quot;,&quot;GUESTBOOK&quot;,&quot;VERIFICATION&quot;,&quot;HUMAN&quot;,&quot;APACHE&quot;,&quot;PROXY2&quot;&#41;;<br /> $index = rand&#40;0,count&#40;$randomText&#41;-1&#41;;<br /> <br /> $LANG&#91;&quot;randomText&quot;&#93; = $randomText&#91;$index&#93;;[/code]<br /> You can of course choose any words you like for the verification and also add more than 6 of them.<br /> <br /> [i]Save and close the file.[/i]<br /> <br /> <br /> <br /> [u]Open lib/add.class.php[/u]<br /> <br /> Find<br /> [code]  	var $bottestanswer = 'armadillo'; /* this is the answer to the question. It must contain no '  */[/code]<br /> <br /> Replace that with<br /> [code]  	var $randomText = '';[/code]<br /> <br /> <br /> Find next<br /> [code]		    $this-&gt;bottestanswer = addslashes&#40;$this-&gt;bottestanswer&#41;;[/code]<br /> <br /> Replace that with<br /> [code]		    $this-&gt;randomText = addslashes&#40;$this-&gt;randomText&#41;;[/code]<br /> <br /> Find next<br /> [code]		&#125; elseif &#40;strtolower&#40;$this-&gt;bottest&#41; != strtolower&#40;$this-&gt;bottestanswer&#41;&#41; &#123;[/code]<br /> <br /> Replace that with<br /> [code]		&#125; elseif &#40;strtolower&#40;$this-&gt;bottest&#41; != strtolower&#40;$this-&gt;randomText&#41;&#41; &#123;[/code]<br /> <br /> Find next<br /> [code]		$HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;bottest\&quot; value=\&quot;&quot;.$this-&gt;bottest.&quot;\&quot;&gt;\n&quot;;[/code]<br /> <br /> After Add<br /> [code]		$HIDDEN .= &quot;&lt;input type=\&quot;hidden\&quot; name=\&quot;randomText\&quot; value=\&quot;&quot;.$this-&gt;randomText.&quot;\&quot;&gt;\n&quot;;[/code]<br /> <br /> [i]Save and close the file.[/i]<br /> <br /> <br /> <br /> [u]Open addentry.php[/u]<br /> <br /> Find<br /> [code]    $gb_post-&gt;bottest = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;bottest&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;bottest&quot;&#93; &#58; '';[/code]<br /> <br /> After Add<br /> [code]    $gb_post-&gt;randomText = &#40;isset&#40;$HTTP_POST_VARS&#91;&quot;randomText&quot;&#93;&#41;&#41; ? $HTTP_POST_VARS&#91;&quot;randomText&quot;&#93; &#58; '';[/code]<br /> <br /> [i]Save and close the file.[/i]<br /> <br /> <br /> <br /> [u]Open templates/form.php[/u]<br /> <br /> Find<br /> [code]    &lt;td class=&quot;font2&quot;&gt;To prove you are not a bot please type the word ARMADILLO into the box below.&lt;br&gt;[/code]<br /> <br /> Replace that with<br /> [code]    &lt;td class=&quot;font2&quot;&gt;To prove you are not a bot please type the word &lt;SCRIPT LANGUAGE=&quot;JavaScript&quot;&gt;document.write&#40;&quot;$LANG&#91;randomText&#93;&quot;&#41;&lt;/SCRIPT&gt; into the box below.&lt;br&gt;[/code]<br /> <br /> Find<br /> [code]      &lt;input type=&quot;text&quot; size=&quot;42&quot; maxlength=&quot;30&quot; name=&quot;bottest&quot;&gt;&lt;/td&gt;[/code]<br /> <br /> Replace that with<br /> [code]     &lt;input type=&quot;text&quot; size=&quot;42&quot; maxlength=&quot;30&quot; name=&quot;bottest&quot;&gt;<br />      &lt;input type=&quot;hidden&quot; name=&quot;randomText&quot; value=&quot;$LANG&#91;randomText&#93;&quot;&gt;&lt;/td&gt;[/code]<br /> <br /> <br /> [i]Save and close the file.[/i]<br /> <br /> Thats all!<br /> <br /> These changes worked for me on my 2.3.1 Advanced Guestbook! I will NOT offer any support concerning this addition to the MOD, I just don't have time! So if you have problems with these changes, you are on your own!<br /> <br /> /Grelli.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18696.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18696.php</link>
				<pubDate><![CDATA[Wed, 16 Nov 2005 17:51:28]]> GMT</pubDate>
				<author><![CDATA[ grelli]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ your last instruction would end up with there being two input boxes for the anti bot test.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18698.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18698.php</link>
				<pubDate><![CDATA[Wed, 16 Nov 2005 18:20:35]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]your last instruction would end up with there being two input boxes for the anti bot test.[/quote]Thats not true  :)<br /> <br /> The second input field...<br /> [code]     &lt;input type=&quot;hidden&quot; name=&quot;randomText&quot; value=&quot;$LANG&#91;randomText&#93;&quot;&gt;[/code]...is a [i]hidden[/i] field and its only purpose is to transfer the random text that was generated to the next step of the posting process to be able to compare it to the text that the user inputs!<br /> <br /> /Grelli.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18704.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18704.php</link>
				<pubDate><![CDATA[Wed, 16 Nov 2005 18:55:30]]> GMT</pubDate>
				<author><![CDATA[ grelli]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yeah sorry was speed reading. Nasty habit of mine. Just to make it clear to people that this mod only works if you use the "Type this word into the box below" type of test as opposed to an actual question such as "What colour is the sky".]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18705.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18705.php</link>
				<pubDate><![CDATA[Wed, 16 Nov 2005 18:59:31]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ hey there, this is an awesome script, im having a smallish problem though, just like someone else did earlyer - i can write whatever i want in the verification box, and it lets me post. checked the code over but i it all seems ok, not sure what ive done wrong, heres a link<br /> <br /> <a class="snap_shots" href="http://dj-triquatra.com/guestbook" target="_blank" rel="nofollow">http://dj-triquatra.com/guestbook</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18733.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18733.php</link>
				<pubDate><![CDATA[Fri, 18 Nov 2005 04:30:26]]> GMT</pubDate>
				<author><![CDATA[ imhungry]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ 1 - update to 2.3.4 by downloading the full package from this site and replacing all but the config.inc.php file. This patches a couple of exploits. It does mean you will have to edit the templates again though.<br /> <br /> 2 - I believe the error lies in either addentry.php or add.class.php. Goto www.carbonize.co.uk/AG and have a look at the pre modded files I put there.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18736.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18736.php</link>
				<pubDate><![CDATA[Fri, 18 Nov 2005 07:38:16]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I have downloaded the file to make the changes to my guestbook but now i get an error when i should write messages, it says that i havent write anything in the name filed though i have done that what should i do?<br /> I forgot to take backup of the old files.<br /> Plese help.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18884.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18884.php</link>
				<pubDate><![CDATA[Mon, 28 Nov 2005 15:05:09]]> GMT</pubDate>
				<author><![CDATA[ testar81]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="testar81"]I have downloaded the file to make the changes to my guestbook but now i get an error when i should write messages, it says that i havent write anything in the name filed though i have done that what should i do?<br /> I forgot to take backup of the old files.<br /> Plese help.[/quote]<br /> <br /> You using 2.3.4 ?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18886.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18886.php</link>
				<pubDate><![CDATA[Mon, 28 Nov 2005 16:56:28]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I am using version 2.3.1 and tried using the revised code provided here and of course I have done something wrong somewhere I just don't know where! This is the error I am getting only when you click sign the guestbook:<br /> <br /> Parse error: parse error, unexpected T_ELSEIF, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/jmn1888/public_html/guestbook/lib/add.class.php on line 202<br /> <br /> Can I just use the already provided files and upload them? I wasn't sure as it says its for a different version and I didnt know if that would conflict with my current version. Would be much easier <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" /> <br /> <br /> So, here is the link:<br /> <br /> <a class="snap_shots" href="http://www.mabrychihuahuas.com/guestbook/index.php" target="_blank" rel="nofollow">http://www.mabrychihuahuas.com/guestbook/index.php</a><br /> <br /> Click sign the guestbook and that is where the error message comes in. Please help! Also, I took no backups of the files, now I am sorry.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18890.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18890.php</link>
				<pubDate><![CDATA[Mon, 28 Nov 2005 23:22:24]]> GMT</pubDate>
				<author><![CDATA[ mabrychis]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Just reload the add.class.php file.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18893.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18893.php</link>
				<pubDate><![CDATA[Tue, 29 Nov 2005 02:14:38]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thank you, it appears to have worked  <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/18894.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/18894.php</link>
				<pubDate><![CDATA[Tue, 29 Nov 2005 03:22:42]]> GMT</pubDate>
				<author><![CDATA[ mabrychis]]></author>
			</item>
			<item>
				<title>error</title>
				<description><![CDATA[ Hi,<br /> I follow the instructions step by step, and I seem to have problems.<br /> when I try to add a new entry on the guest book I get the error that I need to type the word for the human verification, <br /> I tried to change the word and it did not work, <br /> <br /> I went through my code several times and I could not find the error.<br /> <br /> <br /> <br /> could you please give me a hand on where I messed up.<br /> Thank you<br /> <br /> I'm using version 2.31]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19012.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19012.php</link>
				<pubDate><![CDATA[Thu, 8 Dec 2005 04:45:01]]> GMT</pubDate>
				<author><![CDATA[ rvargas]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Sounds like you messed up something. You really should update to 2.3.4 but anyway you can get the premodded files from www.carbonize.co.uk/AG]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19018.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19018.php</link>
				<pubDate><![CDATA[Thu, 8 Dec 2005 11:26:24]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ EDIT to the random verification text MOD:<br /> <br /> [u]Open lang/English.php[/u]  (or the language file that you are using)<br /> <br /> Find<br /> [code]$months&#91;11&#93; = &quot;December&quot;;<br /> [/code]<br /> <br /> After Add<br /> [code]<br /> # BotTest<br /> <br /> $randomText = array&#40;&quot;ARMADILLA&quot;,&quot;GUESTBOOK&quot;,&quot;VERIFICATION&quot;,&quot;HUMAN&quot;,&quot;APACHE&quot;,&quot;PROXY2&quot;&#41;;<br /> $index = rand&#40;0,count&#40;$randomText&#41;-1&#41;;<br /> <br /> $LANG&#91;&quot;randomText&quot;&#93; = $randomText&#91;$index&#93;;[/code]<br /> You can of course choose any words you like for the verification and also add more than 6 of them.<br /> <br /> [i]Save and close the file.[/i]<br /> <br /> The change is "count($randomText)[b]-1[/b])", this needs to be done to prevent the index to be OutOfBounds when choosing the random index.<br /> <br /> /Grelli.<br /> <br /> P.s. This has been changed in the instructions in the previous post!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19025.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19025.php</link>
				<pubDate><![CDATA[Thu, 8 Dec 2005 15:23:32]]> GMT</pubDate>
				<author><![CDATA[ grelli]]></author>
			</item>
			<item>
				<title>Will link on http://carbonize.co.uk/AG/ work with AG 2.3.3</title>
				<description><![CDATA[ I have a spam problem and I like the idea of this captcha test.  My hosting company is currently autoinstalling Advanced Guestbook 2.3.3. Will the link you provide on <a class="snap_shots" href="http://carbonize.co.uk/AG/" target="_blank" rel="nofollow">http://carbonize.co.uk/AG/</a> work with this version?<br /> <br /> Thanks for all your great work - you certainly do put the effort in!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19031.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19031.php</link>
				<pubDate><![CDATA[Thu, 8 Dec 2005 16:34:37]]> GMT</pubDate>
				<author><![CDATA[ daithi]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'd recommend the human verification over my image verification as it is integrated better but yes that link is valid.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19032.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19032.php</link>
				<pubDate><![CDATA[Thu, 8 Dec 2005 16:53:09]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Complete new Download</title>
				<description><![CDATA[ Hello,<br /> <br /> can we download a whole new version of the Advanced Guestbook with the Human Controle included ?<br /> <br /> Thanks<br /> <br /> Schokkaert Johan<br /> Belgium.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19118.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19118.php</link>
				<pubDate><![CDATA[Thu, 15 Dec 2005 06:46:03]]> GMT</pubDate>
				<author><![CDATA[ Schokkaert]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No but Lazarus has it built in.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19119.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19119.php</link>
				<pubDate><![CDATA[Thu, 15 Dec 2005 07:31:42]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Nevermind, prob solved <img src="https://proxy2.de/forum//images/smilies/8a80c6485cd926be453217d59a84a888.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19212.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19212.php</link>
				<pubDate><![CDATA[Tue, 27 Dec 2005 11:33:14]]> GMT</pubDate>
				<author><![CDATA[ Cash]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hey Carbonize,<br /> <br /> I have added the human verification test in my advanced guestbook 6 weeks ago. So the Spam stopped for ~ 4 weeks, but now i have again a lot of spam in my guestbook! <img src="https://proxy2.de/forum//images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" /><br /> <br /> What do i have to do?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19270.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19270.php</link>
				<pubDate><![CDATA[Sat, 7 Jan 2006 12:00:53]]> GMT</pubDate>
				<author><![CDATA[ Clawhammer]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ 1 - Do you have a second copy of the guestbook on your site?<br /> <br /> 2 - Change the question/answer<br /> <br /> 3 - Is it all coming from 1 ip? There are some sad people who post spam manually.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19271.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19271.php</link>
				<pubDate><![CDATA[Sat, 7 Jan 2006 17:17:35]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ 1 - No i don`t have a second copy of the guestbook on my site<br /> <br /> 2 - Thanks, i`m going to change the question/answer<br /> <br /> 3 -  I don`t think that it was posted manually and i will look if it was the same ip all the time<br /> <br /> Thank you very much for your help! <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19272.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19272.php</link>
				<pubDate><![CDATA[Sat, 7 Jan 2006 19:19:27]]> GMT</pubDate>
				<author><![CDATA[ Clawhammer]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks for this fix.  I tryied to make the changes that others suggested but could not find them on the script.  Am I missing something?  Thanks...Ronnie]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19370.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19370.php</link>
				<pubDate><![CDATA[Sat, 14 Jan 2006 18:25:23]]> GMT</pubDate>
				<author><![CDATA[ Ronnie]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ To which changes are you refering?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19371.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19371.php</link>
				<pubDate><![CDATA[Sat, 14 Jan 2006 18:29:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi Carbonize - First of its a great script and I love it.  I am referening to the spam changes listed on page one of this topic.  Has that script been updated?  Thanks...Ronnie]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19372.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19372.php</link>
				<pubDate><![CDATA[Sat, 14 Jan 2006 19:36:04]]> GMT</pubDate>
				<author><![CDATA[ Ronnie]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Well you can download the prepatched files from www.carbonize.co.uk/AG as stated on the first page.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19374.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19374.php</link>
				<pubDate><![CDATA[Sat, 14 Jan 2006 20:17:16]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19375.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19375.php</link>
				<pubDate><![CDATA[Sat, 14 Jan 2006 20:33:35]]> GMT</pubDate>
				<author><![CDATA[ Ronnie]]></author>
			</item>
			<item>
				<title>Human Verification code</title>
				<description><![CDATA[ [color="darkblue"]Many Thanks Works a treat.[/color]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19432.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19432.php</link>
				<pubDate><![CDATA[Sat, 21 Jan 2006 12:56:00]]> GMT</pubDate>
				<author><![CDATA[ Megawatt]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Only a few minutes work. Works great!<br /> Now hopefully the spam stops flooding in...]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19460.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19460.php</link>
				<pubDate><![CDATA[Fri, 27 Jan 2006 12:07:02]]> GMT</pubDate>
				<author><![CDATA[ bebob]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Great, thank you very much for the Script!<br /> <br /> Only a little change: I would recommend to change the following line<br /> [code]&lt;td width=&quot;25%&quot; class=&quot;font2&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/user.gif&quot; width=&quot;16&quot; height=&quot;15&quot; alt=&quot;&quot;&gt; Human Verification&#58;&lt;/td&gt;<br /> [/code]<br /> to<br /> [code]&lt;td width=&quot;25%&quot; class=&quot;font2&quot;&gt;&lt;img src=&quot;$GB_PG&#91;base_url&#93;/img/user.gif&quot; width=&quot;16&quot; height=&quot;15&quot; alt=&quot;&quot;&gt; Human Verification*&#58;&lt;/td&gt;<br /> [/code]<br /> <br /> because it's a required field.<br /> <br />  :D]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19572.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19572.php</link>
				<pubDate><![CDATA[Wed, 8 Feb 2006 00:46:03]]> GMT</pubDate>
				<author><![CDATA[ SimooZ]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes I did make that change to Lazarus a while back but I forgot about this.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19574.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19574.php</link>
				<pubDate><![CDATA[Wed, 8 Feb 2006 11:49:17]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Still works great, no spam-postings in Guestbook.<br /> <br /> The only thing is, I still get notification-mail when spam is tried to be posted (with no success <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" /> ). <br /> How to eliminate those notifications?<br /> <br /> (Notifications of non-spam-entries must be sent)]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19593.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19593.php</link>
				<pubDate><![CDATA[Fri, 10 Feb 2006 12:27:07]]> GMT</pubDate>
				<author><![CDATA[ bebob]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Weird because this stops spam before it gets to that stage.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19594.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19594.php</link>
				<pubDate><![CDATA[Fri, 10 Feb 2006 12:34:16]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Ok...so I downloaded the script...now this...</title>
				<description><![CDATA[ Warning: get_content(): Failed opening '/home/u1/rudemood/html/guestbook/lang/english.php' for inclusion (include_path='.:') in /home/u1/rudemood/html/guestbook/lib/template.class.php on line 40<br /> <br /> <br /> what's the problem here?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19675.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19675.php</link>
				<pubDate><![CDATA[Wed, 15 Feb 2006 16:21:36]]> GMT</pubDate>
				<author><![CDATA[ Chad]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The error message says it all. It cannot find the english.php language file in the lang folder.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19678.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19678.php</link>
				<pubDate><![CDATA[Wed, 15 Feb 2006 17:36:52]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ hi, <br /> <br /> I have try to impliment the changes on Random human verification as per the instructions but i dont know where im going wrong.  Whenever i try to sign in and filling the Verified word and submitting, i get error that i You forgot to fill in the Human Verification field. Please correct it and re-submit.<br /> <br /> Where did i went wrong?. anybody help pls?.  here is my link [url]http://www.afrodream.com/guestbook/addentry.php[/url]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19683.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19683.php</link>
				<pubDate><![CDATA[Fri, 17 Feb 2006 14:23:16]]> GMT</pubDate>
				<author><![CDATA[ Tom4us]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hello,<br /> <br /> Carbonize, you tried to help me awhile back, but I was too ashamed (I suppopse) to come back and admit I wasn't able to do what you said  because I just don't know how. I've spent hours in this post, having it open and copying/pasting from the instructions in this post, but I always get an error message and the changes aren't made. I really am a novice when it comes to PHP, and need step by step help <img src="https://proxy2.de/forum//images/smilies/c30b4198e0907b23b8246bdd52aa1c3c.gif" /> I've finally had to admit it because I've gone from 5-10 spams a day to 10-100 a day. I spent too long yesterday cleaning out as much spam as I was sure was spam, but I'm getting sick of deleting all these spam posts (plus according to my web stats, some of these are being directed to my site from other guestbook entry pages somehow now <img src="https://proxy2.de/forum//images/smilies/1069449046bcd664c21db15b1dfedaee.gif"  /> !) <br /> <br /> I tried a few times to add the script in the 2.2 instructions at the beginning of this post, but I don't have the right Guestbook Templates. This is what I have:<br /> <br /> Advanced Guestbook 2.2<br /> <br /> Guestbook Templates<br /> <br /> - admin_enter.php <br /> - body.php <br /> - entry.php <br /> - error.php <br /> - form.php <br /> - preview.php <br /> - preview_entry.php <br /> - header.php <br /> - footer.php <br /> - icq.php <br /> - url.php <br /> - aim.php <br /> - com.php <br /> - email.php <br /> - success.php <br /> - form_icq.php <br /> - form_aim.php <br /> - form_gender.php <br /> - form_image.php <br /> - com_pass.php <br /> - comment.php <br /> <br /> Am I even able to add the human verification test with this guestbook?<br /> <br /> Help would be tremendously appreciated, I am so tired of deleting these spams manually, every day.<br /> <br /> Thanks!<br /> Cari McKnight]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19760.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19760.php</link>
				<pubDate><![CDATA[Sat, 25 Feb 2006 18:49:41]]> GMT</pubDate>
				<author><![CDATA[ akhkharu]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi,<br /> The first post in this long thread - is it modified with all the changes from the other posts? Or should I go through an entire thread to create human verification test?<br /> Thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19809.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19809.php</link>
				<pubDate><![CDATA[Mon, 6 Mar 2006 15:51:54]]> GMT</pubDate>
				<author><![CDATA[ sophia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If you are using AG 2.3.4 there are premodded files at www.carbonize.co.uk/AG]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19810.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19810.php</link>
				<pubDate><![CDATA[Mon, 6 Mar 2006 15:54:18]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Thanks.<br /> If i do that that wouldn't delete any of the replies in my guestbook, right?<br /> also, i forgot my password and username for the guestbook. How can I find that out?<br /> thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19812.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19812.php</link>
				<pubDate><![CDATA[Mon, 6 Mar 2006 16:56:24]]> GMT</pubDate>
				<author><![CDATA[ sophia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ <a class="snap_shots" href="http://lazarus.carbonize.co.uk" target="_blank" rel="nofollow">http://lazarus.carbonize.co.uk</a> look under FAQ]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19813.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19813.php</link>
				<pubDate><![CDATA[Mon, 6 Mar 2006 17:04:56]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>deleting spam...</title>
				<description><![CDATA[ I have to delete over 500 messages (Spam). how can i do it other than thorugh easy admin? (that takes too long..) any way to get into mysql database and delete them that way?<br /> thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19820.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19820.php</link>
				<pubDate><![CDATA[Tue, 7 Mar 2006 04:20:16]]> GMT</pubDate>
				<author><![CDATA[ sophia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ phpMyAdmin which is usually supplied with cPanel under Databases.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19824.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19824.php</link>
				<pubDate><![CDATA[Tue, 7 Mar 2006 11:16:03]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I don't get it, i added human verification test last night. I got at least 10-15 spam messages today.<br /> What is going on?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19826.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19826.php</link>
				<pubDate><![CDATA[Tue, 7 Mar 2006 20:07:46]]> GMT</pubDate>
				<author><![CDATA[ sophia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ test that it is working by making an entry, putting in a wrong answer and clicking preview.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19827.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19827.php</link>
				<pubDate><![CDATA[Tue, 7 Mar 2006 20:33:39]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I did and it took the wrong word. What did I do wrong?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19829.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19829.php</link>
				<pubDate><![CDATA[Tue, 7 Mar 2006 23:38:57]]> GMT</pubDate>
				<author><![CDATA[ sophia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ How did you add this? By hand or did you use the premodded files?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19834.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19834.php</link>
				<pubDate><![CDATA[Wed, 8 Mar 2006 10:52:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I used the premade files...]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/19841.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/19841.php</link>
				<pubDate><![CDATA[Wed, 8 Mar 2006 22:37:31]]> GMT</pubDate>
				<author><![CDATA[ sophia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hello<br /> <br /> I adjusted the files and everything went great. I used a wrong word and got a friendly error message. But I still get junk posts from bots. Is it possible that those bots can read the word or can they work around this bot control? What about an image that show the word, so bots can't scan the page... ???<br /> <br /> The advanced guestbook is really great, but those bots just make it terrible.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20204.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20204.php</link>
				<pubDate><![CDATA[Wed, 12 Apr 2006 07:48:01]]> GMT</pubDate>
				<author><![CDATA[ Mr C]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If you update to 2.4.1 it now comes with image verification.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20205.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20205.php</link>
				<pubDate><![CDATA[Wed, 12 Apr 2006 08:17:46]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi,<br /> <br /> After using the human verification script I downloaded from that site, I had peace for sometime, but then I got some evil people managing to get some spam stuff into the guestbook, though not anywhere near to what I was getting before.<br /> <br /> After finding this thread, I went &amp; downloaded &amp; tested version 2.4.1 as recommended on my pc. Without filling in that verification code, I got as anticipated: <br /> <br /> [quote]Guestbook - Error  	 <br /> One of the input fields does not seem to be valid.[/quote]<br /> <br /> When I tried filling in the wrong code, Firefox which I was using totally ignored the Submit button click, as if I had not submitted at all! That was also the case after typing in the correct code.<br /> Could that be a local problem or more than that?<br /> <br /> When I tried out IE, the submission worked and in case of the wrong code, the same error message as above.<br /> <br /> Has anyone else had the same problems? If so How did u deal with them?<br /> <br /> I do request the maker (Carbonize?) to help.<br /> My first suggestion is that some text be added near that image verification to explain what it is/what is supposed to be done with it and that it is a compulsory field. In my world and probably in a number of others', there are unbelievably many PC/Internet greenhorns who simply dont know what that is and would end up giving up on submitting entries &amp; not understanding why. Just a simple text..., probably similar to the one used in that patch before.<br /> <br /> In case other people dont have the same problem, I do suggest showing me in which file I can make the necessary changes, before I upload the newest version to a university site I look after, hopefully with this spamming problem done away with.<br /> <br /> Meanwhile, regarding the database, is it not enough to just add the table "book_captcha" to the already existing ones with their data or I have to redo everything anew?  <br /> <br /> Thanks! <br />  <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20261.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20261.php</link>
				<pubDate><![CDATA[Fri, 21 Apr 2006 15:15:59]]> GMT</pubDate>
				<author><![CDATA[ xprt007]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I am not the maker of Advanced Guestbook just some mods for it. I do not recommend my anti bot test with 2.4 or 2.4.1 as they already have an anti bot system built in.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20263.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20263.php</link>
				<pubDate><![CDATA[Fri, 21 Apr 2006 15:37:43]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi,<br /> <br /> Thanks for the response and that correction ...<br /> Well I was not suggesting adding that anti-bot test, rather some text label in/near that box with that image verification just explaining what it is and some asteriks or other clarification that just like the *Name &amp; *Message .. it is a required field.<br /> <br /> If no other person needs this, I do again request for the name of the file where I could do it myself.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20268.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20268.php</link>
				<pubDate><![CDATA[Fri, 21 Apr 2006 17:17:50]]> GMT</pubDate>
				<author><![CDATA[ xprt007]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I believe there is a template with the word captcha in it's name.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20270.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20270.php</link>
				<pubDate><![CDATA[Fri, 21 Apr 2006 20:49:50]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi, i'm not an phpbb expert and i'm now working with Advanced GuestBook v2.4 for phpBB by Dreamy &amp; Kooky.<br /> <br /> Can you please tell me the easiest way to prevent spam once and for all. I want to keep the current messages in the guestbook and the layout.<br /> <br /> Many thanks...Jeroen,<br /> the netherlands]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20368.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20368.php</link>
				<pubDate><![CDATA[Sun, 30 Apr 2006 14:49:21]]> GMT</pubDate>
				<author><![CDATA[ ivibes]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Open the config.inc.php file and set USE_CAPTCHA to true.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20369.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20369.php</link>
				<pubDate><![CDATA[Sun, 30 Apr 2006 14:52:34]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ There's no USE_CAPTCHA in my config.inc.php file<br /> <br /> Jeroen]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20370.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20370.php</link>
				<pubDate><![CDATA[Sun, 30 Apr 2006 15:02:23]]> GMT</pubDate>
				<author><![CDATA[ ivibes]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ When you updated to 2.4.x you were meant to copy your database info from your current config.inc.php file to the 2.4 one.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20371.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20371.php</link>
				<pubDate><![CDATA[Sun, 30 Apr 2006 15:14:31]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I never updated my guestbook.<br /> <br /> I started with this version....and it's still the same...<br /> <br /> Jeroen<br /> <br /> <a class="snap_shots" href="http://forum.valthermondonline.nl/guestbook.php" target="_blank" rel="nofollow">http://forum.valthermondonline.nl/guestbook.php</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20372.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20372.php</link>
				<pubDate><![CDATA[Sun, 30 Apr 2006 15:17:50]]> GMT</pubDate>
				<author><![CDATA[ ivibes]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Do you want to see the code in my config.inc.php file ?<br /> <br /> Jeroen]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20373.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20373.php</link>
				<pubDate><![CDATA[Sun, 30 Apr 2006 16:32:05]]> GMT</pubDate>
				<author><![CDATA[ ivibes]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ok email me you config file to <a class="snap_shots" href="mailto:webmaster@carbonize.co.uk">webmaster@carbonize.co.uk</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20374.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20374.php</link>
				<pubDate><![CDATA[Sun, 30 Apr 2006 21:05:20]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ok, i mailed my config.inc.php file...<br /> <br /> Jeroen]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20393.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20393.php</link>
				<pubDate><![CDATA[Mon, 1 May 2006 13:23:50]]> GMT</pubDate>
				<author><![CDATA[ ivibes]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Could always do it over pm's.<br /> I think they are enabled for all users not just mod's.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20395.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20395.php</link>
				<pubDate><![CDATA[Mon, 1 May 2006 14:48:06]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>Re: Adding a simple human verification test</title>
				<description><![CDATA[ Nice job on the mod. I'm new to all of this and was getting very aggrevated with our cub scout web guest book being spammed.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20402.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20402.php</link>
				<pubDate><![CDATA[Wed, 3 May 2006 19:31:21]]> GMT</pubDate>
				<author><![CDATA[ 3360Guestbook]]></author>
			</item>
			<item>
				<title>Human verification also tracked</title>
				<description><![CDATA[ Thanks for the excellent work for modifications in the code. I modified the code and it worked very fine, and i received no spam bot entries for some time. But after some days the "fixed word" also is being tracked and the same problem of Machine entries follow posting in my guest book. <br /> Can u help me in creating a randomly generated word for human verification. thats the only solution to it.<br /> I am using advanced guest book 2.3.1<br /> Would be a great relief if i can solve this problem.<br /> thanks in advance]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20409.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20409.php</link>
				<pubDate><![CDATA[Fri, 5 May 2006 13:21:51]]> GMT</pubDate>
				<author><![CDATA[ sid.mohanty]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Update to 2.4.1 as it uses CAPTCHA (the poster has to type in some characters that appear in an image).]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20410.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20410.php</link>
				<pubDate><![CDATA[Fri, 5 May 2006 14:23:59]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ finally! . . . . <br /> I've been getting about 20 - 30 spam entries a day for the past two weeks. None of the anti-spam mods I used worked. So, I finally did the verification mod, . . . and not one spam entry in three days!!<br /> Let's hope it stays that way.<br /> <br /> Thanks for the forum!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/20649.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/20649.php</link>
				<pubDate><![CDATA[Fri, 2 Jun 2006 06:41:26]]> GMT</pubDate>
				<author><![CDATA[ nucleusrt]]></author>
			</item>
			<item>
				<title>Still getting spam</title>
				<description><![CDATA[ I've put the human verification test on my guestbook, but I'm still getting spam.  Any other recommendations?  How hard is the image thing to do, I'm not too good at this stuff.  I'm just running a basic guestbook as a remembrance to a friend who got killed.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21205.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21205.php</link>
				<pubDate><![CDATA[Tue, 12 Sep 2006 17:17:55]]> GMT</pubDate>
				<author><![CDATA[ stinkywea]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Updating to 2.4.1 is relatively simple. The instructions are in the forum somewhere.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21206.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21206.php</link>
				<pubDate><![CDATA[Tue, 12 Sep 2006 17:34:09]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I am using godaddy.com servers, and Advance guestbook was an add-on.  Does this make a difference?  As I stated earlier, I know hardly anything about this stuff.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21208.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21208.php</link>
				<pubDate><![CDATA[Wed, 13 Sep 2006 21:12:28]]> GMT</pubDate>
				<author><![CDATA[ stinkywea]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No you just need to copy database information from the config.inc.php file you have now to the one that comes with 2.4.1. hen upload 2.4.1 and run update_db.php that is found in the misc folder of 2.4.1.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21209.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21209.php</link>
				<pubDate><![CDATA[Wed, 13 Sep 2006 21:19:53]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'm using 2.4.1 with captchas. It worked stopping spam during a long time, but now somehow spammers are getting through this as well. Is it possible that they worked out all possibly images and now they pass automatically the test or something? Any ideas or suggestions?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21217.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21217.php</link>
				<pubDate><![CDATA[Fri, 15 Sep 2006 21:22:38]]> GMT</pubDate>
				<author><![CDATA[ Trucoto]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ There will always be sad people who sit there and manually enter spam. Or are we talking about comment spam as opposed to entry spam?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21218.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21218.php</link>
				<pubDate><![CDATA[Fri, 15 Sep 2006 21:34:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'm talking about entry spam (comments are password protected, and they never appear as spam). I'm pretty sure it's not manually entered, as I began to receive 10-20 daily, when before they were mostly stopped by the captchas. I don't think it's even a single guy doing it; seems more like the dam is broken and the water is pouring in. Perhaps if there were some way to stop spam by words... the guestbook has an option to censor single words, but it would be very useful to prevent posts based on words, or regular expressions. For example, if I could avoid whole posts that contain "phentermine", or variations of it, that would be a great solution. <br /> On the other hand, the other day I read somewhere, in some tecnical news site (Slashdot or similar), that spammers began to hire people to solve captchas; that way the real people are part of an automated process for spamming, really discouraging. If that's the truth behind what I am experimenting, we're completely lost, and the only solution would be to reject posts based on patterns like poker, phentermine, viagra or whatever word variation may occur.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21219.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21219.php</link>
				<pubDate><![CDATA[Fri, 15 Sep 2006 23:04:12]]> GMT</pubDate>
				<author><![CDATA[ Trucoto]]></author>
			</item>
			<item>
				<title>Again spam</title>
				<description><![CDATA[ Same here..<br /> After a month of no spam, this week they are back. (also on the Guestbook on this site i see)<br /> Looks like they bypass the captcha input. At the moment i block every ip where it comes from, so if the are posting manual, this solves it in time..i hope.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21257.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21257.php</link>
				<pubDate><![CDATA[Fri, 22 Sep 2006 16:20:41]]> GMT</pubDate>
				<author><![CDATA[ MarcoH]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Weird.  A few people have reported an increase in spam. One is now logging the entries and says they are valid inputs (putting captcha in). Could it be one person is so sad as to sit there manually entering captcha or have they wrote a script that guess the captcha. Maybe I will look into it. I doubt they have a script to read CAPTCHA yet as I've not heard of any spam increase in Lazarus. But then AG's CAPTCHA uses the servers time to generate a random sequence.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21260.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21260.php</link>
				<pubDate><![CDATA[Fri, 22 Sep 2006 16:40:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I dont think its manual done...<br /> Just checked my logs quick, and there where strange entries.<br /> Without visiting the site, they GET the addentry.php page, and right after that (within 3 secs) the  image.php page with this.<br /> <br /> 2006-09-21 10:52:02 W3SVC4062 ROME **.**.**.** GET /guestbook/image.php id=325ccaf6cdb9a0e2cc8b729a70432120 80 - 72.184.15.221 HTTP/1.0 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.0) - <a class="snap_shots" href="http://www.mysite.nl/image.php?id=325ccaf6cdb9a0e2cc8b729a70432120" target="_blank" rel="nofollow">http://www.mysite.nl/image.php?id=325ccaf6cdb9a0e2cc8b729a70432120</a> www.mysite.nl 200 0 0 968 266 374 <br /> <br /> after that within 4 sec, they POST the addentry.php...and some spam is added.<br /> <br /> Hopes this helps. <br /> (I'am searching also for a solution)]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21263.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21263.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 00:37:31]]> GMT</pubDate>
				<author><![CDATA[ MarcoH]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Carbonize,<br /> i have found maybe a possible workaround/solution..correct me plz if i'am wrong.<br /> <br /> Because they get the addentry page automatic, i have changed the name to someting different. someting like addentry_**.php.<br /> I also changed this in the config.inc.php, to kept everything working <img src="https://proxy2.de/forum//images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif"/><br /> <br /> I will look if this helps today.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21264.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21264.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 01:08:58]]> GMT</pubDate>
				<author><![CDATA[ MarcoH]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You could also stop search engines spidering your guestbook using a robots.txt file.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21265.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21265.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 07:42:44]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I am sure glad my copy of lazarus  is inside of a very highly modded version of phpnuke. No spam at all. Plus if they try it will automatically ban them and post there Ip addy on my main page. <img src="https://proxy2.de/forum//images/smilies/908627bbe5e9f6a080977db8c365caff.gif" /> Plus I [b]DO NOT[/b] allow comments at all.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21266.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21266.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 10:14:04]]> GMT</pubDate>
				<author><![CDATA[ JTD]]></author>
			</item>
			<item>
				<title>They have cracked CAPTCHA... now what?</title>
				<description><![CDATA[ It was great. A few months of only an occasional spam that was added manually. Now my guestbook is getting hammered by spam and there is no way they are all putting this in manually? <br /> <br /> I like the idea of changing addenty.php to another name. Do I only have to change it in the config.php file? <br /> <br /> Are there any other new ideas? I love the guest book but I hate having to manage it daily. There has to be an easier way. <br /> <br /> Thanks,<br /> Ryan<br /> www.gypsylounge.com]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21269.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21269.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 17:16:55]]> GMT</pubDate>
				<author><![CDATA[ gypsylounge]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ok this is getting a bit weird. Looks like somehow they are figuring out the CAPTCHA. I don't have AG here nor do I have it installed as I use Lazarus (for obvious reasons). From the above post I can see they are hitting the guestbook to get the form and are then submitting it complete with CAPTCHA. They have to get the form first for the captcha to have been generated and put into the database. I will look into it if I get time/motiviation.<br /> <br /> As to renaming addentry.php rename the file then edit config.inc.php to reflect the change.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21270.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21270.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 17:43:03]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Marcoh email me please.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21271.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21271.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 17:45:17]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Marcoh email me please.[/quote]<br /> <br /> done..<br /> <br /> p.s. renaming the addentry.php works ok here.. (no spam since i changed him)<br /> <br /> Also the robots.txt solution must work.<br /> <br /> Example if you dont know:<br /> Put a robots.txt in the root of your site.<br /> Put in the the robots.txt file, at least:<br /> <br /> User-agent: *<br /> Disallow: /guestbook/]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21276.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21276.php</link>
				<pubDate><![CDATA[Sat, 23 Sep 2006 21:04:49]]> GMT</pubDate>
				<author><![CDATA[ MarcoH]]></author>
			</item>
			<item>
				<title>No More Guestbook Spam</title>
				<description><![CDATA[ I think this will be a long term solution to fight spam on your guest book.<br /> I don’t know how but the spammers find our addentry.php, comment.php files and our www.yourpage.com/forum/ folder. On my site the addentry page is the number one entry page and comment is a close second. <br /> I have changed the name of both addenty.php and the comment.php file and renamed the directory all of my guestbook is stored in. You need to update the config file to reflect all of the changes you make but this is pretty easy. <br /> (Just to keep it interesting I have left a “forum” folder and two files titled addenty.php and comment.php in the folder. Instead of linking to my guest book the spammers are now welcomed by a giant picture of a can of spam that loops to the comment.php page and back. www.gypsylounge.com/forum/addentry.php . Hopefully this will slow them down a bit) <br /> If you are having the same problems with spammers as I am I recommend you change the name of the directory and the name of those two pages. <br /> <br /> Good luck,<br /> <br /> Ryan<br /> www.gypsylounge.com]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21306.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21306.php</link>
				<pubDate><![CDATA[Tue, 26 Sep 2006 18:03:48]]> GMT</pubDate>
				<author><![CDATA[ gypsylounge]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The spammers find your site using Google or any other major search engine. This is why it's a good idea to block them from viewing the guestbook by using a robots.txt file.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21307.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21307.php</link>
				<pubDate><![CDATA[Tue, 26 Sep 2006 18:25:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Easy download</title>
				<description><![CDATA[ Hi,<br /> <br /> I just went through these 17 pages...<br /> <br /> And it is all very confusing for me.<br /> I am just not so good with php coding<br /> <br /> Is there no easy download available with the complete edited files.<br /> Just replacing some files, edit password and go?<br /> <br /> I work with 2.4.2<br /> <br /> By the way, any idea if in the next release an anti-spam feature (like this) will be build in?<br /> <br /> thanks.<br /> Peter]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21428.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21428.php</link>
				<pubDate><![CDATA[Thu, 19 Oct 2006 16:17:27]]> GMT</pubDate>
				<author><![CDATA[ Ninanauk]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ 2.4.2 already has anti spam protection in the form of CAPTCHA (image verification).]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21429.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21429.php</link>
				<pubDate><![CDATA[Thu, 19 Oct 2006 16:37:23]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>ehhh...</title>
				<description><![CDATA[ Thanks, <br /> That is what I hoped for when I earlier today upgraded to 2.4.2<br /> <br /> But the upgrade did not went how I would like it.<br /> (Just replacing all the files)<br /> After reading your post, I tried to add a message, and this is what I got.<br />  <img src="https://proxy2.de/forum//images/smilies/c30b4198e0907b23b8246bdd52aa1c3c.gif" /> <br /> <br /> Query Error<br /> --------------------------------------------------------------------------------<br /> <br /> MySQL Error : Query Error<br /> Error Number: 1146 Table 'ninanauk_agbook1.book_captcha' doesn't exist<br /> Date        : Thu, October 19, 2006 09:58:44<br /> IP          : 84.26.211.219<br /> Browser     : Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)<br /> Referer     : <a class="snap_shots" href="http://www.ninanauk.net/gastboek/index.php" target="_blank" rel="nofollow">http://www.ninanauk.net/gastboek/index.php</a><br /> PHP Version : 4.4.4<br /> OS          : Linux<br /> Server      : Apache/1.3.37 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635.SR1.2 mod_ssl/2.8.28 OpenSSL/0.9.7a PHP-CGI/0.1b<br /> Server Name : www.ninanauk.net]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21432.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21432.php</link>
				<pubDate><![CDATA[Thu, 19 Oct 2006 17:03:27]]> GMT</pubDate>
				<author><![CDATA[ Ninanauk]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ You needed to run the update_db.php file. I have ran it for you so guestbook should work fine now.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21435.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21435.php</link>
				<pubDate><![CDATA[Thu, 19 Oct 2006 17:58:45]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Thanks</title>
				<description><![CDATA[ You were right (whats new....)<br /> Works like a charm<br /> <br />  <img src="https://proxy2.de/forum//images/smilies/97ada74b88049a6d50a6ed40898a03d7.gif" /> <br /> <br /> Thanks for the great and fast help!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21439.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21439.php</link>
				<pubDate><![CDATA[Thu, 19 Oct 2006 20:13:46]]> GMT</pubDate>
				<author><![CDATA[ Ninanauk]]></author>
			</item>
			<item>
				<title>manual updates needed</title>
				<description><![CDATA[ Hello Carbonize and all,<br /> <br /> Are the manual upates posted at the start of this topic <a class="snap_shots" href="http://www.proxy2.de/forum/viewtopic.php?t=4678&amp;start=0" target="_blank" rel="nofollow">http://www.proxy2.de/forum/viewtopic.php?t=4678&amp;start=0</a><br /> the latest?<br /> <br /> we run Advanced Guestbook 2.3.2 with several mods, i wish to add image verification but will have to do it manually.<br /> <br /> TIA Ben]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21514.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21514.php</link>
				<pubDate><![CDATA[Sun, 5 Nov 2006 16:05:08]]> GMT</pubDate>
				<author><![CDATA[ benwalsh]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Whilst my original mod works it's half arsed. Updating to 2.4.2 not only adds captcha but addresses other issues with the guestbook.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21515.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21515.php</link>
				<pubDate><![CDATA[Sun, 5 Nov 2006 16:10:34]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Thanks Carby</title>
				<description><![CDATA[ [color="darkblue"]i have upgraded, i was worried about my mods, but in fact it was easy enough. [b]Thanks Carby[/b][/color]<br /> <br /> <a class="snap_shots" href="http://www.tubal-reversal.net/feedback/" target="_blank" rel="nofollow">http://www.tubal-reversal.net/feedback/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21519.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21519.php</link>
				<pubDate><![CDATA[Mon, 6 Nov 2006 06:12:22]]> GMT</pubDate>
				<author><![CDATA[ benwalsh]]></author>
			</item>
			<item>
				<title>human interface mod</title>
				<description><![CDATA[ my guestbook has beenb getting flooded with bot entries.  I add your mod from you downloadable zip file and made the suggested changes. Now my guestbook requires a typed word to submit a comment!  So far so good.  Thank You for you mod, it will keep our guestbook alive!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21785.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21785.php</link>
				<pubDate><![CDATA[Tue, 12 Dec 2006 03:04:05]]> GMT</pubDate>
				<author><![CDATA[ road-dragons]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ My mod is no longer needed since Image verification was added in Advanced guestbook 2.4.1]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21786.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21786.php</link>
				<pubDate><![CDATA[Tue, 12 Dec 2006 11:56:47]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Hi Carbonize,<br /> <br /> I run 2.4.1 and the image verification works fine, but I still get spammed about 4 times a day, usually with Russian addresses about pills, xanax etc. They look like automated spammessages. Is there a possibility that spambots can also decrypt these image verification images?<br /> <br /> Regards,<br /> Webbie<br /> <br /> PS - One more thing, does anyone know of a way to block all countries of the world, except two of them? Preferrably through my .htaccess-file?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21820.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21820.php</link>
				<pubDate><![CDATA[Tue, 19 Dec 2006 13:07:51]]> GMT</pubDate>
				<author><![CDATA[ Webbie]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes you can block IP rangs using your htaccess file. Do a Google search for it.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21821.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21821.php</link>
				<pubDate><![CDATA[Tue, 19 Dec 2006 15:38:20]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes, I am doing that currently, but it's too bad that, as far as I know, you can only block per ISP-range as opposed to blocking an entire country in one sweep. That would really put an end to 99.9% of the spam in my case (my website, forum and guestbook is only meant for dutch-speaking countries i.e. the Netherlands and Belgium).<br /> <br /> Also, I don't think you can specify a range between 2 IP-adresses, you can only specify it like:<br /> <br /> 123.123 (if you want to block 123.123.0.0 through 123.123.255.255)<br /> <br /> or can you put a start and end IP in the .htaccess file?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21822.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21822.php</link>
				<pubDate><![CDATA[Tue, 19 Dec 2006 15:51:44]]> GMT</pubDate>
				<author><![CDATA[ Webbie]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Despite my efforts to contain the number of spammessages in my Guestbook, it became too much of a daily hassle. Also because my website attracts lots of underaged people the quality of my website is being lowered by all those sexmessages.<br /> <br /> Therefor I decided to remove the Advanced Guestbook from my website alltogether. It would've been great if there'd be a feature in AG to approve new guestbook entries before they become visible.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21880.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21880.php</link>
				<pubDate><![CDATA[Fri, 5 Jan 2007 15:13:53]]> GMT</pubDate>
				<author><![CDATA[ Webbie]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I don't get any spam at all. I found a good .htaccess file helps. Block servers like layeredtech.net and asia.co.th I think. I'd have to look at mine to be sure but Layeredtech is a big culprit. I'd see a request from a layeredtech IP and then staright after one or two attempts at posting on the exact page the layeredtech ip just requested.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21882.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21882.php</link>
				<pubDate><![CDATA[Fri, 5 Jan 2007 22:29:39]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Ok, I added the human verification to my Advanced Guestbook and it is working fine but there is another problem.  If you go to the following link, you will see that the box for name (I only found out it was the name box by trial and error) is out to the side and has no title.  <br /> <br /> [url]http://www.xtremedetails.com/CustomerFeedback/addentry.php[/url]<br /> <br /> Can you please tell me what I need to change in the code to fix it?  I searched all through this forum and thread and have seen nothing related, sorry if I missed it.  <br /> <br /> This is a "Customer Comments" rather than "Guestbook" for our Siberian Husky Kennel and I did some modifications to change a lot of things and hopefully I didn't do to much damage, lol, still learning here! On our site, I already have a "guestbook" setup but this one is for "customer comments" and I will not add a link to it until I have it right.<br /> <br /> Thanks in advance for your help!<br /> Jessie<br /> [url]http://www.xtremedetails.com/snowdemonkennel[/url]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21896.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21896.php</link>
				<pubDate><![CDATA[Thu, 11 Jan 2007 22:26:10]]> GMT</pubDate>
				<author><![CDATA[ SnowDemonKennel]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ My advice is just update to version 2.4.2 of the advanced guestbook as it has Captcha built in.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21897.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21897.php</link>
				<pubDate><![CDATA[Thu, 11 Jan 2007 23:24:44]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Why You dont answer my emails please?</title>
				<description><![CDATA[ [b]Carbonize![/b]<br /> <br /> Why You dont answer my emails please?<br /> <br /> Really I need help with my guestbook!<br /> <br /> <br /> This is a copy of the email I've sent to You:<br /> <br /> *********************************<br /> <br /> Advanced Guestbook 2.3.1<br /> <br /> Hi, I see the guestbook Forum and I follow step by step the instructions to mod with the simple human verification test and did not work to me? <br /> <br /> Im sending to You in ZIP the files I think U need to modify the lines! <br /> <br /> I DONT want to upgrade because I personalized my guestbook and took to much time to me! <br /> <br /> Some codes like ---&gt; $AG_CODE, I cant find! <br /> <br /> THE URL is of the instructions is: <a class="snap_shots" href="http://proxy2.de/forum/viewtopic.php?t=4678" target="_blank" rel="nofollow">http://proxy2.de/forum/viewtopic.php?t=4678</a> <br /> <br /> Thanks, <br /> <br /> Best regards, <br /> Philippe aka. Sting!<br /> <br /> <br /> *********************************]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21993.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21993.php</link>
				<pubDate><![CDATA[Wed, 24 Jan 2007 19:07:19]]> GMT</pubDate>
				<author><![CDATA[ Sting]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Because I receive around 30 emails a day that are not spam and sometimes I either forget or am to busy doing other things.<br /> <br /> You said yourself your files have been modified so possibly you do not have the variable in question. The variable in question should be in form.php. I cannot look at your file as work has blocked zip files from being downloaded.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21995.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21995.php</link>
				<pubDate><![CDATA[Wed, 24 Jan 2007 20:18:21]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Do want I send the files again?<br /> <br /> In ZIP or RAR files?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21998.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21998.php</link>
				<pubDate><![CDATA[Thu, 25 Jan 2007 00:14:57]]> GMT</pubDate>
				<author><![CDATA[ Sting]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Send as a zip file but change the extension to .laz so I can bypass the filter.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/21999.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/21999.php</link>
				<pubDate><![CDATA[Thu, 25 Jan 2007 00:37:01]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Send as a zip file but change the extension to .laz so I can bypass the filter.[/quote]<br /> <br /> <br /> Email sent.<br /> <br /> Rename it to .zip<br /> <br /> Bye]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22000.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22000.php</link>
				<pubDate><![CDATA[Thu, 25 Jan 2007 05:07:18]]> GMT</pubDate>
				<author><![CDATA[ Sting]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Yes I received your email. To be honest you can update without changing the template files. You'd just have to add the new captcha template files to the folder and add the new $CAPTCHA variable to two template files.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22001.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22001.php</link>
				<pubDate><![CDATA[Thu, 25 Jan 2007 05:15:04]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]Yes I received your email. To be honest you can update without changing the template files. You'd just have to add the new captcha template files to the folder and add the new $CAPTCHA variable to two template files.[/quote]<br /> <br /> <br /> Whats two templates files?<br /> <br /> Thanks!<br /> <br /> **********************<br /> <br /> EDITED: I've Your email.....I will made the changes...<br /> <br /> Thanks!]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22004.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22004.php</link>
				<pubDate><![CDATA[Thu, 25 Jan 2007 14:42:46]]> GMT</pubDate>
				<author><![CDATA[ Sting]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Parse error: parse error in c:\inetpub\wwwroot\clanpana\ija\ijaboard\guestbook\lib\add.class.php on line 397<br /> <br /> Fatal error: Cannot instantiate non-existent class: addentry in c:\inetpub\wwwroot\clanpana\ija\ijaboard\guestbook\addentry.php on line 29<br /> <br /> <br />  <img src="https://proxy2.de/forum//images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22021.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22021.php</link>
				<pubDate><![CDATA[Fri, 26 Jan 2007 16:38:44]]> GMT</pubDate>
				<author><![CDATA[ Sting]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ BUMP!<br /> <br /> Any help?<br /> <br /> <br /> [size="24"][b]HELP HELP HELP[/b][/size]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22036.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22036.php</link>
				<pubDate><![CDATA[Tue, 30 Jan 2007 20:19:53]]> GMT</pubDate>
				<author><![CDATA[ Sting]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ If I get chance I will look into it later.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22065.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22065.php</link>
				<pubDate><![CDATA[Sat, 3 Feb 2007 18:48:59]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Question about the human check</title>
				<description><![CDATA[ I installed the human check and it seems to work.<br /> Only i have 1 question i use version 2.3.1<br /> I changed the word what you have to fill in and it seems so work.<br /> Only 1 thing, when i fill in another word, the message is also placed.<br /> So it does not matter what word you type?<br /> What is wrong?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22412.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22412.php</link>
				<pubDate><![CDATA[Mon, 12 Mar 2007 13:03:58]]> GMT</pubDate>
				<author><![CDATA[ josbia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'd recommend updating to 2.4.2 as it has image verification built in and fixes some major bugs/exploits.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22413.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22413.php</link>
				<pubDate><![CDATA[Mon, 12 Mar 2007 16:34:38]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I understand that upgrading is the best solution, but is it also possible with this version, because I use it with phpWebsite as a mod]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22414.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22414.php</link>
				<pubDate><![CDATA[Mon, 12 Mar 2007 16:55:38]]> GMT</pubDate>
				<author><![CDATA[ josbia]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Carbonize"]I'd recommend updating to 2.4.2 as it has image verification built in and fixes some major bugs/exploits.[/quote]<br /> <br /> My apologies if this has already been posted, but I've been online staring at this forum for answers to our spam issue for an hour now. <br /> <br /> Is there any easy way to upgrade to 2.4.2 without loosing what I already have with 2.4.1?]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22415.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22415.php</link>
				<pubDate><![CDATA[Mon, 12 Mar 2007 17:46:05]]> GMT</pubDate>
				<author><![CDATA[ bethcrook]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Just replace your existing files EXCEPT config.inc.php. If you are updating frmo 2.3.x you will also have to visit the update_db.php script which is located in the misc folder.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22416.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22416.php</link>
				<pubDate><![CDATA[Mon, 12 Mar 2007 17:47:36]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Valdation</title>
				<description><![CDATA[ Installed the code about an hour ago.  Passed the test as far as I can see.   I read down some of the entries in the forum and saw some of the questions other had.  I looked up the first two and it seemed like the corrections had already been made in the code.  Is the code up to date at this time?  Were the corrections that you and others pointed out made?  Thanks.  Top]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22502.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22502.php</link>
				<pubDate><![CDATA[Sun, 1 Apr 2007 10:45:47]]> GMT</pubDate>
				<author><![CDATA[ TopCat]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ The code is up to date as far as I can see although it's not really needed with version 2.4.x of the Advanced Guestbook.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22503.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22503.php</link>
				<pubDate><![CDATA[Sun, 1 Apr 2007 14:44:16]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Thanks</title>
				<description><![CDATA[ I am still on 2.3.1 at topcatlive.  Is there an update only zip that I can run and still hang on to my settings, style, and entries? I will search for it, I am just asking in case I don't find it or am not comfortable with it. Plus the main thing is keeping my settings, style, and entries.  Top]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22510.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22510.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 02:24:23]]> GMT</pubDate>
				<author><![CDATA[ TopCat]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Settings, style, entries etc are all stored in your database. You just ned to download 2.4.2, copy the database information from your 2.3.1 config.inc.php file to the 2.4.2 config.inc.php file then upload 2.4.2 and visit misc/update_db.php in your web browser.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22511.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22511.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 02:29:15]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Okay</title>
				<description><![CDATA[ Let me make sure I am clear on this.  I got the copy confi.ini.php part.  All I do is upload to the same folder and the 2.4 will overwrite the 2.3?  Will I have to delete files after it updates?  I had to delete a couple of files after it was installed (I think... it was a while ago). Never heard of misc/update.  Will it be easy to follow? Top]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22512.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22512.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 02:37:04]]> GMT</pubDate>
				<author><![CDATA[ TopCat]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ very easy.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22513.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22513.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 04:00:25]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Oops</title>
				<description><![CDATA[ I copied config.inc.php, overwrote 2.3 with 2.4, reloaded config with the one from 2.3, then dialed in the misc/update_db.php, and received a "Please update the config.inc.php file" first. Am clueless. Top]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22514.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22514.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 08:56:38]]> GMT</pubDate>
				<author><![CDATA[ TopCat]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ No yo ucopy the database information FROM your current config.inc.php file TO the one in 2.4.2 as it has some new stuff in it.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22515.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22515.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 09:02:06]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>It just feels like I am panicking</title>
				<description><![CDATA[ Okay.  Will do.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22516.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22516.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 09:04:53]]> GMT</pubDate>
				<author><![CDATA[ TopCat]]></author>
			</item>
			<item>
				<title>Now I'm Panicking</title>
				<description><![CDATA[ As I look at it, I am thinking that you are saying that I should copy the stuff the has GB_DB.  And the scary part is it makes sense to me. Top]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22517.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22517.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 09:12:17]]> GMT</pubDate>
				<author><![CDATA[ TopCat]]></author>
			</item>
			<item>
				<title>Whoah</title>
				<description><![CDATA[ You did it again.  Thank you. Top]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/22518.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/22518.php</link>
				<pubDate><![CDATA[Mon, 2 Apr 2007 09:22:07]]> GMT</pubDate>
				<author><![CDATA[ TopCat]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Please help, I followed instructions from the beginning of the topic. It seems to be working, however form looks odd, submit button got pushed all the way to the right<br /> <br /> can someone please take a look at my guestbook and help me out?<br /> <br /> <a class="snap_shots" href="http://www.nowy-jork.com/Ksiega3/addentry.php" target="_blank" rel="nofollow">http://www.nowy-jork.com/Ksiega3/addentry.php</a><br /> <br /> I would appreciate any input, unfortunately PHP is a new thing to me]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/23366.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/23366.php</link>
				<pubDate><![CDATA[Wed, 1 Aug 2007 04:33:22]]> GMT</pubDate>
				<author><![CDATA[ talkto_menow]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This mod is not needed for AG versions 2.4 and over as it has captha. Replace all your files except config.inc.php with the new ones.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/23367.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/23367.php</link>
				<pubDate><![CDATA[Wed, 1 Aug 2007 05:54:39]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I do not believe this is a case. Advanced Guestook I am using is 2.3.1.<br /> <br /> I tried to upgrade to latest version, but I was getting some errors<br /> <br /> "1146 Table 'guestbook.book_captcha' doesn't exist"<br /> <br /> and after running updadet_db.php another error<br /> <br /> "1044 Access denied for user 'yscr_gbuAj7'@'localhost' to database 'guestbook'"<br /> <br /> which does not make any sense since I updated config file with databse info, and guestbook connects to the right table<br /> <br /> version 2.4.3<br /> <a class="snap_shots" href="http://www.nowy-jork.com/Ksiega2/" target="_blank" rel="nofollow">http://www.nowy-jork.com/Ksiega2/</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/23370.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/23370.php</link>
				<pubDate><![CDATA[Wed, 1 Aug 2007 12:39:20]]> GMT</pubDate>
				<author><![CDATA[ talkto_menow]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Once you update you need to visit the misc/update_db.php file in your web browser.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/23371.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/23371.php</link>
				<pubDate><![CDATA[Wed, 1 Aug 2007 15:38:50]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I tried that, and I still get errors. At this point, I think, is easier to modify code. Can please, someone take a look at it and tell me what is wrong<br /> <br /> <a class="snap_shots" href="http://www.nowy-jork.com/Ksiega3/TempCode.html" target="_blank" rel="nofollow">http://www.nowy-jork.com/Ksiega3/TempCode.html</a><br /> <br /> and this is how form looks<br /> <br /> <a class="snap_shots" href="http://www.nowy-jork.com/Ksiega3/addentry.php" target="_blank" rel="nofollow">http://www.nowy-jork.com/Ksiega3/addentry.php</a><br /> <br /> Please I am getting frustrated with all that spam. Please help]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/23378.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/23378.php</link>
				<pubDate><![CDATA[Thu, 2 Aug 2007 12:43:26]]> GMT</pubDate>
				<author><![CDATA[ talkto_menow]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ In form.php you have two empty table cells. Look for them both<br /> <br /> The first is<br /> <br />   &lt;td&gt;<br />  &lt;/tr&gt; <br /> <br /> and the second is <br /> <br /> &lt;td&gt;<br />    &lt;td&gt;<br /> <br /> in both cases delete one of the &lt;td&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/23379.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/23379.php</link>
				<pubDate><![CDATA[Thu, 2 Aug 2007 13:42:51]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Works, great! thank you]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/23380.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/23380.php</link>
				<pubDate><![CDATA[Thu, 2 Aug 2007 20:30:13]]> GMT</pubDate>
				<author><![CDATA[ talkto_menow]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ thanks much. worked great <img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/25344.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/25344.php</link>
				<pubDate><![CDATA[Wed, 11 Aug 2010 04:19:25]]> GMT</pubDate>
				<author><![CDATA[ blank]]></author>
			</item>
			<item>
				<title>Re:Adding a simple human verification test</title>
				<description><![CDATA[ I had to go back and renable captcha, while leaving this on.<br /> <br /> Lately bots are able to get passed this alone.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/26003.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/26003.php</link>
				<pubDate><![CDATA[Thu, 29 Sep 2011 14:59:58]]> GMT</pubDate>
				<author><![CDATA[ blank]]></author>
			</item>
			<item>
				<title>Adding a simple human verification test</title>
				<description><![CDATA[ If they are getting passed then I suggest changing the question/answer regularly. they will actually have to visit your guestbook at least once to get the answer.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/26004.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/26004.php</link>
				<pubDate><![CDATA[Thu, 29 Sep 2011 15:07:05]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Re:Adding a simple human verification test</title>
				<description><![CDATA[ Wow i have both this, plus captcha enabled, and they are still getting through. <br /> <br /> <img src="https://proxy2.de/forum//images/smilies/1cfd6e2a9a2c0cf8e74b49b35e2e46c7.gif" /> kinda annoying, but i guess its life on the web anymore <img src="https://proxy2.de/forum//images/smilies/69934afc394145350659cd7add244ca9.gif" /><br /> <br /> I wonder if there is a way to incorporate one of the anti spam services such as Akismet into it... ]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/26006.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/26006.php</link>
				<pubDate><![CDATA[Sun, 2 Oct 2011 03:28:14]]> GMT</pubDate>
				<author><![CDATA[ blank]]></author>
			</item>
			<item>
				<title>Adding a simple human verification test</title>
				<description><![CDATA[ I suspect your spammers are actually manually visiting the site. To be honest the captcha in AG is very simple and, judging by the spam in this sites guestbook, was broken a long time ago by bots.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/26007.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/26007.php</link>
				<pubDate><![CDATA[Sun, 2 Oct 2011 08:55:28]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Adding a simple human verification test</title>
				<description><![CDATA[ [quote=Carbonize]I suspect your spammers are actually manually visiting the site. To be honest the captcha in AG is very simple and, judging by the spam in this sites guestbook, was broken a long time ago by bots.[/quote]<br /> <br /> yeah i was thinking that, When looking at server logs, it seems many visitors go directly to the addentry.php page so the bots, and spammers know about it... <br /> <br /> I was going to switch to your version of the guestbook, but i dont really wanna recreate the template i made right now <img src="https://proxy2.de/forum//images/smilies/1cfd6e2a9a2c0cf8e74b49b35e2e46c7.gif" /> but soon i will.<br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/26008.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/26008.php</link>
				<pubDate><![CDATA[Sun, 2 Oct 2011 10:06:39]]> GMT</pubDate>
				<author><![CDATA[ blank]]></author>
			</item>
			<item>
				<title>Adding a simple human verification test</title>
				<description><![CDATA[ I'm looking at adding Solve Media as an option to my guestbook. If you go to my website and click Contact at the top of the blog you will see Solve Media in action. I may make a mode for AG to use it as well.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/26009.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/26009.php</link>
				<pubDate><![CDATA[Sun, 2 Oct 2011 10:15:20]]> GMT</pubDate>
				<author><![CDATA[ Carbonize]]></author>
			</item>
			<item>
				<title>Adding a simple human verification test</title>
				<description><![CDATA[ [quote=fng]<img src="https://proxy2.de/forum//images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" /> working really good now! thanks for the great mod and the fast fix.[/quote]<br /> <br /> really its grat mod. thanks for post.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/26835.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/26835.php</link>
				<pubDate><![CDATA[Mon, 29 Dec 2014 04:25:35]]> GMT</pubDate>
				<author><![CDATA[ UmeTube]]></author>
			</item>
			<item>
				<title>Re:Adding a simple human verification test</title>
				<description><![CDATA[ [b][i][u][url=http://www.assignmenthippo.com/mechanical-engineering-assignment-help]Mechanical Assignment Help[/url][/u][/i][/b]<br /> Mechanical engineering can be termed as mother of all engineering branches with application almost to any machines which are working in the world. With application area too large this branch tends to be very difficult to master. Topics such as thermodynamics, control systems, etc which are very tough to understand. Also mathematics tends to give a lot of trouble to all students all across the globe. Students tends to concentrate on studies and completing the theories to score good marks in their examination. They mostly are tensed about their assignments completion as they fear they will complete the assignment incorrectly and get bad grades. Students mostly copy from any internet sources which not only results in punishment for plagiarism but also some marks are deducted which is very bad for them. To decrese these issues we at Assignment Hippo provide online mechanical engineering assignment help to all students across the globe. To know more about us visit our website,<br /> ]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/4678/29842.php</guid>
				<link>https://proxy2.de/forum/posts/preList/4678/29842.php</link>
				<pubDate><![CDATA[Thu, 31 Dec 2020 06:31:04]]> GMT</pubDate>
				<author><![CDATA[ Oliver_queen]]></author>
			</item>
	</channel>
</rss>