<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: Internal CAPTCHA Changes</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Internal CAPTCHA Changes</description>
<language>en</language>
<pubDate>Wed, 06 May 2026 08:49:05 +0000</pubDate>

<item>
<title>redityo on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3499</link>
<pubDate>Fri, 31 Oct 2008 20:47:47 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">3499@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;yes howard, you can use internal captcha in machform, simply edit your config.php file and you will find this line :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;define(&#38;#39;USE_INTERNAL_CAPTCHA&#38;#39;,false);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;set it as true
&#60;/p&#62;</description>
</item>
<item>
<title>howardes on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3498</link>
<pubDate>Fri, 31 Oct 2008 19:34:07 +0000</pubDate>
<dc:creator>howardes</dc:creator>
<guid isPermaLink="false">3498@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;@ Ron S&#60;/p&#62;
&#60;p&#62;Can you tell me if the internal Captcha is available to use in MatchForm? If yes any special place I would look to set this as the default for my forms. reCaptcha seems to be much to difficult to &#34;answer test&#34; for me.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;-howard
&#60;/p&#62;</description>
</item>
<item>
<title>webcommerce on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3459</link>
<pubDate>Thu, 30 Oct 2008 09:51:33 +0000</pubDate>
<dc:creator>webcommerce</dc:creator>
<guid isPermaLink="false">3459@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thanks Yuniar, that's excellent.&#60;br /&#62;
I will try that.&#60;br /&#62;
Ron S
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3458</link>
<pubDate>Thu, 30 Oct 2008 09:49:19 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">3458@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;If you need to use single color for the text.&#60;br /&#62;
Let say we would like to have:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Blue text: 003399
Green background: 00FF00&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;(taken from &#60;a href=&#34;http://html-color-codes.com/&#34; rel=&#34;nofollow&#34;&#62;http://html-color-codes.com/&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;Edit your php-captcha.inc.php, search around line 272 for this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$iTextColour = imagecolorallocate($this-&#38;gt;oImage, rand(0, 100), rand(0, 100), rand(0, 100));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;change it to use the blue color:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$iTextColour = imagecolorallocate($this-&#38;gt;oImage, 0x00, 0x33, 0x99);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Next, search around line 211:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ($this-&#38;gt;bUseColour) {
    $iLineColour = imagecolorallocate($this-&#38;gt;oImage, rand(100, 250), rand(100, 250), rand(100, 250));
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;change it to use the green color:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ($this-&#38;gt;bUseColour) {
    $iLineColour = imagecolorallocate($this-&#38;gt;oImage, 0x00, 0xFF, 0x00);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That would set your colors.
&#60;/p&#62;</description>
</item>
<item>
<title>Saghalie on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3453</link>
<pubDate>Thu, 30 Oct 2008 06:51:19 +0000</pubDate>
<dc:creator>Saghalie</dc:creator>
<guid isPermaLink="false">3453@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Nice! thanks for that..
&#60;/p&#62;</description>
</item>
<item>
<title>webcommerce on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3452</link>
<pubDate>Thu, 30 Oct 2008 05:31:21 +0000</pubDate>
<dc:creator>webcommerce</dc:creator>
<guid isPermaLink="false">3452@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Well ... if it's of interest to anyone else, I did find the solution to this. The CAPTCHA image is available in glorious colour by making the following change:&#60;/p&#62;
&#60;p&#62;./lib/php-captcha/php-captcha.inc.php&#60;/p&#62;
&#60;p&#62;look for &#34; // class defaults - change to effect globally &#34;&#60;br /&#62;
change define('CAPTCHA_USE_COLOUR', false);&#60;br /&#62;
to define('CAPTCHA_USE_COLOUR', true);&#60;/p&#62;
&#60;p&#62;To see an example check out my test form at &#60;a href=&#34;http://www.callsave.com.au/secure_form.php&#34; rel=&#34;nofollow&#34;&#62;www.callsave.com.au/secure_form.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ron S
&#60;/p&#62;</description>
</item>
<item>
<title>webcommerce on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3444</link>
<pubDate>Wed, 29 Oct 2008 11:43:39 +0000</pubDate>
<dc:creator>webcommerce</dc:creator>
<guid isPermaLink="false">3444@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi Saghalie,&#60;/p&#62;
&#60;p&#62;Sorry, I didn't think to say it in my original post but I'm using internal Captcha.&#60;br /&#62;
I don't think this is very similar to recaptcha?&#60;/p&#62;
&#60;p&#62;Thanks.&#60;br /&#62;
Ron S
&#60;/p&#62;</description>
</item>
<item>
<title>Saghalie on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3443</link>
<pubDate>Wed, 29 Oct 2008 10:29:43 +0000</pubDate>
<dc:creator>Saghalie</dc:creator>
<guid isPermaLink="false">3443@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Ron,&#60;/p&#62;
&#60;p&#62;You will need to edit hooks/custom_hooks.php and define your theme there.  At least I believe you can still do this there, I haven't done it in a while though.&#60;/p&#62;
&#60;p&#62;Check out &#60;a href=&#34;http://recaptcha.net&#34; rel=&#34;nofollow&#34;&#62;http://recaptcha.net&#60;/a&#62; for further info on themes.&#60;/p&#62;
&#60;p&#62;Hope this helps!&#60;/p&#62;
&#60;p&#62;Saghalie
&#60;/p&#62;</description>
</item>
<item>
<title>webcommerce on "Internal CAPTCHA Changes"</title>
<link>https://www.machform.com/forums/topic/internal-captcha-changes#post-3442</link>
<pubDate>Wed, 29 Oct 2008 10:26:08 +0000</pubDate>
<dc:creator>webcommerce</dc:creator>
<guid isPermaLink="false">3442@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;First off, my thanks for a great form tool. I've been looking for something like this for a long time.&#60;/p&#62;
&#60;p&#62;I want to change the background and text colours in the captcha image. e.g Navy blue text on a pale green background .... Is this possible?&#60;/p&#62;
&#60;p&#62;If so, where would the changes be made??&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Ron S
&#60;/p&#62;</description>
</item>

</channel>
</rss>
