Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a custom module for contactus form. Now I want to use joomla recaptcha plugin in to this module. Any idea how to get this done?

please help

share|improve this question

2 Answers

up vote 11 down vote accepted

In order to use joomla default recaptcha plugin follow these steps-

1)Get recaptcha keys from http://www.google.com/recaptcha

2)Set these keys to recaptcha plugin and activate it if it's not.

3)Put below code where you want to show recaptcha

//php code
JPluginHelper::importPlugin('captcha');
$dispatcher = JDispatcher::getInstance();
$dispatcher->trigger('onInit','dynamic_recaptcha_1');

//html code inside form tag
<div id="dynamic_recaptcha_1"></div>

4)Put this code where you validating/processing the form

$post = JRequest::get('post');      
JPluginHelper::importPlugin('captcha');
$dispatcher = JDispatcher::getInstance();
$res = $dispatcher->trigger('onCheckAnswer',$post['recaptcha_response_field']);
if(!$res[0]){
    die('Invalid Captcha');
}
share|improve this answer
1  
Yep it's working,thanks alot – Toretto Oct 13 '12 at 7:32
@Tornado:Good to know:) – Irfan Oct 13 '12 at 7:33

Got this from: http://jw-extension.net/joomla-how-to/138-an-easy-way-insert-captcha-in-any-module-or-component-of-joomla.html

  1. Download it

  2. login to http://www.google.com/recaptcha to get reCAPTCHA Public Key and reCAPTCHA Private Key

  3. Install , enable and enter public and private key

  4. In HTMLmodule insert {captcha} where you need to display captcha

  5. In general please insert

    global $mainframe;
    $mainframe->triggerEvent('onCaptchaDisplay');
    

to display captcha.

  1. If Auto-verify with reCAPTCHA option is enabled, the plugin will check if captcha verification data exists then automatically connect to reCAPTCHA and ask for confirmation. This method requires a little more system resource on every page load but really useful if you have many pages need captcha verification. If you don't want to enable captcha verification globally but for just few pages then you might want to disable Auto-verify with reCAPTCHA option. To verify user response, insert the following PHP code to the controller file of individual Joomla! extension where captcha verification needed:

    global $mainframe;
    $mainframe->triggerEvent('onCaptchaConfirm');
    
share|improve this answer
thanks for your response but I don't want to use any external plugin. – Toretto Oct 12 '12 at 6:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.