<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : Add mCaptcha to contactus plugin</title>
		<link>https://www.cotonti.com</link>
		<description>Neueste Themenbeiträge</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Mon, 13 Apr 2026 23:51:19 -0000</pubDate>

		<item>
			<title>foxhound</title>
			<description><![CDATA[Ok, I understand.<br />
<br />
Thanks for all the help!!<br />
On to the next plugins <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" />]]></description>
			<pubDate>Sa, 29 Aug 2009 22:34:50 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16581]]></link>
		</item>
		<item>
			<title>esclkm</title>
			<description><![CDATA[Yes! manager used only when you need to use on your site more than one captcha]]></description>
			<pubDate>Sa, 29 Aug 2009 21:29:52 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16578]]></link>
		</item>
		<item>
			<title>foxhound</title>
			<description><![CDATA[Thanks for that link. That was very usefull. However there is one thing which I do not completely understand. The code as laid out on theat page is not exactly how you added it to the example plugin (the one you can dowload at the end of that page).<br />
So, its a bit confusing for a noob like me <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" /><br />
<br />
Anyway, I just installed the plugin version you provide there and seems to work perfectly, thanks a lot!! <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" /><br />
<br />
<br />
[edit]<br />
I assume I can not use the Captcha manager with this plugin version which I downloaded from that tutorial page right?]]></description>
			<pubDate>Sa, 29 Aug 2009 21:19:31 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16577]]></link>
		</item>
		<item>
			<title>esclkm</title>
			<description><![CDATA[I ask it because contactus from ratibor is not working with captcha's <br />
If you can you may translate in translate.google.com my article : <a href="http://www.cotonti.com/docs/ru/misc/231">http://www.cotonti.com/docs/ru/misc/231</a><br />
In which I show how to integate different types of captchas in you plugin. As exaple was - the simplest contactus]]></description>
			<pubDate>Sa, 29 Aug 2009 20:30:25 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16575]]></link>
		</item>
		<item>
			<title>foxhound</title>
			<description><![CDATA[This is the one<br />
<br />
<a href="http://www.armaholic.com/datas/users/4-contactus.png" rel="nofollow"><img src="http://www.armaholic.com/datas/thumbs/4-contactus.png" alt="" /></a><br />
<br />
And if you want to see the plugin, I uploaded it to my site so you can see for yourself <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" /><br />
- <a href="http://www.armaholic.com/datas/users/4-contactus.rar" rel="nofollow">Contactus plugin</a>]]></description>
			<pubDate>Sa, 29 Aug 2009 20:21:40 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16574]]></link>
		</item>
		<item>
			<title>esclkm</title>
			<description><![CDATA[what kind of contact us do you use?<br />
please show me screen]]></description>
			<pubDate>Sa, 29 Aug 2009 20:00:34 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16571]]></link>
		</item>
		<item>
			<title>foxhound</title>
			<description><![CDATA[Ehm, yes that is what I am trying to add to contactus.<br />
<br />
mcaptcha for Cotonti is installed and working on my test site. Now I wanted to add it to the contactus plugin as well. I assumed I had to add the code as specified on the download page.]]></description>
			<pubDate>Sa, 29 Aug 2009 19:50:08 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16570]]></link>
		</item>
		<item>
			<title>esclkm</title>
			<description><![CDATA[Please download mcaptcha for cotonti.<br />
You can find it on this site.]]></description>
			<pubDate>Sa, 29 Aug 2009 19:27:41 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16568]]></link>
		</item>
		<item>
			<title>foxhound</title>
			<description><![CDATA[I am trying to add <a href="http://www.cotonti.com/downloads/plugins/miscellaneous/89?highlight=MCAPTCHA">mcaptcha</a> to the contactus plugin which was originally made for seditio but works without problems in Cotonti as well.<br />
<br />
I have added the following to the contactus.php: <pre class="code">// Add mcaptcha to contactus
$t-&gt;assign(array(   'CONTACTUS_MCAPTCHA' =&gt; mcaptcha_generate(),
		  'CONTACTUS_VERIFY' =&gt; '&lt;input type=&quot;text&quot; name=&quot;rverify&quot; size=&quot;4&quot; /&gt;',));

$rverify = sed_import('rverify', 'P', 'INT');
if(!sed_captcha_validate($rverify))
	{   
		$error_string .= $L&#091;'captcha_wrong'&#093;.'&lt;br /&gt;';
	}
</pre>
<br />
<br />
Than I tried to add it to the form itself but that is where I am stuck (yes, I know, I am a php noob <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/sad.gif" alt=":(" /> )<br />
<br />
<pre class="code">// adding captcha
$plugin_body .= &quot;&lt;tr&gt;&lt;td&gt;&quot;.$L&#091;'plu_contactcaptcha'&#093;.&quot;: &lt;/td&gt;&lt;td&gt;\n;
$plugin_body .= &quot;{CONTACTUS_MCAPTCHA}\n&quot;;
$plugin_body .= &quot;&lt;tr&gt;&lt;td&gt;&quot;.$L&#091;'plu_contactcaptcha'&#093;.&quot;: &lt;/td&gt;&lt;td&gt;\n;
$plugin_body .= &quot;{CONTACTUS_VERIFY}\n&quot;;

// end captcha
</pre>
<br />
I realise it wont work with the tags now in php so I tried to copy how the forum was build with other parts of the contactus plugins, changing it to the mcaptcha variables etc but I keep just getting php errors when I try to acces the contactus page.<br />
If someone can help me on this that would be appreciated <img class="aux smiley" src="https://www.cotonti.com/./images/smilies/smile.gif" alt=":)" />]]></description>
			<pubDate>Sa, 29 Aug 2009 19:25:05 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/de/forums?m=posts&q=3245&d=0#post16567]]></link>
		</item>
	</channel>
</rss>