Does the recaptcha feature work with Joomla 3.2.1?
before 3.2.1 there was a basic problem with joomla and the url's for recaptcha.
Is it a problem with ChronoForms or maybe still the problem with the urls in joomla?
before 3.2.1 there was a basic problem with joomla and the url's for recaptcha.
Is it a problem with ChronoForms or maybe still the problem with the urls in joomla?
Hi Jackprince,
I don't know of any problems with ReCaptcha* in Joomla! 3.2.1 or in earlier versions.
Bob
* Except that some Joomla! templates include CSS that misplaces the ReCaptcha display.
I don't know of any problems with ReCaptcha* in Joomla! 3.2.1 or in earlier versions.
Bob
* Except that some Joomla! templates include CSS that misplaces the ReCaptcha display.
ReCaptcha Problems with version 3.2: http://docs.joomla.org/J3.2:The_reCaptcha_function_has_been_temporarily_disabled_for_Joomla_3.2
As far as I could research it, this was fixed in Version 3.2.1.
But I do still have problems, as neither captcha nor reCaptcha loads.
As far as I could research it, this was fixed in Version 3.2.1.
But I do still have problems, as neither captcha nor reCaptcha loads.
Hi jackprince,
ChronoForms doesn't use the Joomla! ReCaptcha code so that shouldn't be a problem (though sometimes the CSS gets mixed up).
Please post a link to the form so I can take a quick look.
Bob
ChronoForms doesn't use the Joomla! ReCaptcha code so that shouldn't be a problem (though sometimes the CSS gets mixed up).
Please post a link to the form so I can take a quick look.
Bob
FIXED
The order was wrong. I had the load Captcha action after the render action.
Switched it and it works. I guess same works for ReCaptcha.
The order was wrong. I had the load Captcha action after the render action.
Switched it and it works. I guess same works for ReCaptcha.
Hi jackprince,
In ChronoForms the order of action is usually (but not always) important and should follow the 'logical' form building/processing sequence i.e. in this case you need to set the ReCaptcha before rendering the HTML.
Bob
In ChronoForms the order of action is usually (but not always) important and should follow the 'logical' form building/processing sequence i.e. in this case you need to set the ReCaptcha before rendering the HTML.
Bob
how do i use ReCaptcha on Chronoforms V5?
the howtwo for V4 is not working, right?
the howtwo for V4 is not working, right?
Hi Frank,
There is no ReCaptcha action available for V5 yet, its set for the next release, hopefully by Friday or so!
Regards,
Max
There is no ReCaptcha action available for V5 yet, its set for the next release, hopefully by Friday or so!
Regards,
Max
Thanks for the RC4.
ReCaptcha is now included but not working as it should.
ReCaptcha is not visible after wrong or empty input?
i have to reload the page to see the ReCaptcha again.
Error message because of wrong Captcha on top of the form is visible.
ReCaptcha is now included but not working as it should.
ReCaptcha is not visible after wrong or empty input?
i have to reload the page to see the ReCaptcha again.
Error message because of wrong Captcha on top of the form is visible.
I have the same problem, but the order of the events/actions seems to be all right.
Link to an image of my captcha config: http://postimg.org/image/o14lim6p5/
In ChronoForms 3 or 4 I have used that template code:
Now - it doesnt work. In the captcha.php file I have found the code {captcha_img}, but it doesnt work too.
My actual code is that:
What code I have to use to make the normal captcha work?
Link to an image of my captcha config: http://postimg.org/image/o14lim6p5/
In ChronoForms 3 or 4 I have used that template code:
<input type="text" name="chrono_verification" value="" title="" class="chrono_captcha_input" size="5" maxlength="5" tabindex="<?php echo $tabIdx; ?>" />
{chronocaptcha_img}
Now - it doesnt work. In the captcha.php file I have found the code {captcha_img}, but it doesnt work too.
My actual code is that:
<input type="text" name="chaptcha" value="" title="" class="chrono_captcha_input" size="5" maxlength="5" tabindex="<?php echo $tabIdx; ?>" />
{captcha_img}
What code I have to use to make the normal captcha work?
I think I have found the problem.
My scenario is this:
as code in my form I use this PHP code:
<?php
include 'templates/mytheme/forms/contact.html.php';
?>
the CF engine loads the code from this file and generate the form. The replace mechanism of the captcha plugin doenst work in this scenario, because the str_replace command have no effect of the included code.
A possible solution should be that:
- load the includes data
- modify CF plugin code to proccess the readed code from included file (instead of the data from $form->content )
But I think the implementation isnt trivial.
My scenario is this:
as code in my form I use this PHP code:
<?php
include 'templates/mytheme/forms/contact.html.php';
?>
the CF engine loads the code from this file and generate the form. The replace mechanism of the captcha plugin doenst work in this scenario, because the str_replace command have no effect of the included code.
A possible solution should be that:
- load the includes data
- modify CF plugin code to proccess the readed code from included file (instead of the data from $form->content )
But I think the implementation isnt trivial.
This topic is locked and no more replies can be posted.