<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>Peter&#039;s Useful Crap - Topic: Version 2.82 released!</title>
	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released</link>
	<description><![CDATA[Useful tips on Canada, cell phones, banking, technology, WordPress, PHP and more]]></description>
	<generator>Simple:Press Version 5.5.1</generator>
	<atom:link href="http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>Andy on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p63</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p63</guid>
        	        	<description><![CDATA[<p>Hi Peter,</p>
<p>I just installed this version and get the "blank image window". I've read through a ton of posts and i'm not sure where I need to change to make the fonts work. Can you lend a hand. I dont' even have it working but I can tell this plugin is going to be a life saver.</p>
<p>Cheers,<br />
Andy</p>
]]></description>
        	        	<pubDate>Thu, 02 Aug 2007 14:45:48 +0000</pubDate>
        </item>
        <item>
        	<title>Peter on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p55</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p55</guid>
        	        	<description><![CDATA[<p>I have now released a <a href="http://www.theblog.ca/?page_id=138" title="For the random in you">Random Anti-Spam</a> version of the plugin...</p>
]]></description>
        	        	<pubDate>Sat, 28 Jul 2007 18:57:05 +0000</pubDate>
        </item>
        <item>
        	<title>blueyes on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p50</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p50</guid>
        	        	<description><![CDATA[<blockquote><p>Peter said:</p>
<p>Did you check the diagnostic page at Manage &#62; Custom anti-spam? Maybe you donâ€™t have the FreeType library installed in PHP.</p>
</blockquote>
<hr />
<p>It's installed because I have custom headers using TTF fonts. It was just odd that it stopped working.</p>
]]></description>
        	        	<pubDate>Thu, 26 Jul 2007 08:26:50 +0000</pubDate>
        </item>
        <item>
        	<title>Marcus Herou on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p47</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p47</guid>
        	        	<description><![CDATA[<p>Oh sorry to bother again...but I have a suggestion... </p>
<p>Why don't you two developers co-op in the two wpmu projects so you use the same codebase for rendering the captcha. I mean no reinventing the wheel and double smartness involved and someone else which can relieve you of some sharity work which OS can be sometimes.</p>
<p>Just think of it.</p>
]]></description>
        	        	<pubDate>Thu, 26 Jul 2007 04:17:48 +0000</pubDate>
        </item>
        <item>
        	<title>Marcus Herou on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p45</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p45</guid>
        	        	<description><![CDATA[<p>Hi Peter.<br />
I successfully ripped some code from <a href="http://www.white-hat-web-design.co.uk/articles/php-captcha.php" rel="nofollow"><a href="http://www.white-hat-web-desig" rel="nofollow">http://www.white-hat-web-desig</a>.....aptcha.php</a><br />
which I found out is used in the wp-signup-captcha <a href="http://wpmudev.org/project/WPMU-Signup-Captcha" rel="nofollow"><a href="http://wpmudev.org/project/WPM" rel="nofollow">http://wpmudev.org/project/WPM</a>.....up-Captcha</a></p>
<p>Just comment or remove all refs to $cas_text[] and add this below.</p>
<p>/*<br />
*$cas_text[] = "school";<br />
$cas_text[] = "blogs";<br />
$cas_text[] = "edu";<br />
$cas_text[] = "gidday";<br />
$cas_text[] = "nospam";<br />
$cas_text[] = "chill";<br />
$cas_text[] = "whoa";<br />
$cas_text[] = "blocked";<br />
$cas_text[] = "enjoy";<br />
$cas_text[] = "feast";*/<br />
*/<br />
function generateCode($characters) {<br />
      /* list all possible characters, similar looking characters and vowels have been removed */<br />
      $possible = '23456789bcdfghjkmnpqrstvwxyz';<br />
      $code = '';<br />
      $i = 0;<br />
      while ($i < $characters) {<br />
         $code .= substr($possible, mt_rand(0, strlen($possible)-1), 1);<br />
         $i++;<br />
      }<br />
      return $code;<br />
   }</p>
<p>$cas_text[0] = generateCode($characters='6');</p>
]]></description>
        	        	<pubDate>Thu, 26 Jul 2007 04:13:53 +0000</pubDate>
        </item>
        <item>
        	<title>Peter on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p44</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p44</guid>
        	        	<description><![CDATA[<p>Thanks for the suggestion, Marcus.  I've been thinking about some sort of random list for quite some time... how I will engineer it remains to be seen...</p>
]]></description>
        	        	<pubDate>Wed, 25 Jul 2007 12:25:40 +0000</pubDate>
        </item>
        <item>
        	<title>Marcus Herou on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p43</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p43</guid>
        	        	<description><![CDATA[<p>Hi. Saw after I posted on the blog that I should've posted here (GULP).<br />
---clip clip---<br />
Hi.</p>
<p>I really really people which contribute to the rest of the world and I like your effort with this. I however have a pointerâ€¦ The word should be randomized since at least my imagination will run out within 100 words.. Is id configurable?</p>
<p>I agree that the captcha should be readable but look here: <a href="http://sam.zoy.org/pwntcha/" rel="nofollow">http://sam.zoy.org/pwntcha/</a> for inspiration :)</p>
<p>I use jcaptcha.sf.net (look at it) on my site since it is so damn configurable example of my use here: <a href="http://www.tailsweep.com/captchaRenderer.do" rel="nofollow"><a href="http://www.tailsweep.com/captc" rel="nofollow">http://www.tailsweep.com/captc</a>.....enderer.do</a></p>
<p>There are of course a zillion things to add to a captcha to make it unbreakable but then it will most definitely then not be usable. However a random word list is really needed to get an easy share of security (at least a feel of it :) ).</p>
<p>Anyway Iâ€™m starting a wpmu blog now so I cannot rely on the things I know best which is Java stuff so I need to rely on cool developers like yourself.</p>
<p>Hope you have a enhancement already in your pocket ready to fire.</p>
<p>Kindly</p>
<p>//Marcus<br />
---clip clip---</p>
]]></description>
        	        	<pubDate>Wed, 25 Jul 2007 11:34:21 +0000</pubDate>
        </item>
        <item>
        	<title>Peter on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p42</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p42</guid>
        	        	<description><![CDATA[<p>Did you check the diagnostic page at Manage > Custom anti-spam? Maybe you don't have the FreeType library installed in PHP.</p>
]]></description>
        	        	<pubDate>Tue, 24 Jul 2007 13:37:21 +0000</pubDate>
        </item>
        <item>
        	<title>blueyes on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p41</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p41</guid>
        	        	<description><![CDATA[<p>Gotta question about the ttf fonts.  Back when I upgraded to the 2.0 whatever version the fonts didn't work anymore.  I just upgraded to 2.82 and the fonts still do not work. Any thoughts?</p>
]]></description>
        	        	<pubDate>Tue, 24 Jul 2007 07:30:42 +0000</pubDate>
        </item>
        <item>
        	<title>hmw on Version 2.82 released!</title>
        	<link>http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p39</link>
        	<category>Peter's Custom Anti-Spam for WordPress</category>
        	<guid isPermaLink="true">http://www.theblog.ca/peter-forum/peters-custom-anti-spam-for-wordpress/version-282-released/page-2#p39</guid>
        	        	<description><![CDATA[<p>Excellent - thank you so much for taking the time to create this plugin!  I was just wondering how I can change the font size and/or the size of the image box?</p>
<p><strong>Edit by Peter</strong><br />
Answered here: <a href="http://www.theblog.ca/?page_id=123&#038;forum=1&#038;topic=7" rel="nofollow"><a href="http://www.theblog.ca/?page_id" rel="nofollow">http://www.theblog.ca/?page_id</a>.....38;topic=7</a></p>
]]></description>
        	        	<pubDate>Sun, 22 Jul 2007 16:19:11 +0000</pubDate>
        </item>
</channel>
</rss>