HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
how to implement htcaptcha vanilla 3??
Godib
New
i have not seen anyone using htcaptcha. i think it is a good alternative to recaptcha.
which part of vanilla 3 contain the registration??
thanks
0
Comments
reCaptcha is a plugin and everything you want to change/add should be a plugin, too. I would recommend to copy the recaptcha plugin folder and try to customize it for that other captcha service
thanks for the input👍️
i could not quite understand their guide.
In order to confirm the user sent you a real passcode, and in order to get credited for the answer, you must check the result from your server while providing your secret.
The simplest way to do this with PHP is something like the following. Remember to replace “your_secret_key” with your actual secret!
if you prefer the cURL style, you could use:
If you do not understand their tutorial, I guess that you have nothing done with PHP or JavaScript before. That makes writing a plugin like that for Vanilla quite hard... ;-)
Normally I would say that writing a plugin for Vanilla is a very good first step into programming, but writing a plugin for this requirement is not suited for a beginners plugin. You should consider paying somebody if you really would like to see that captcha in your own forum.
yeah i do not know php or javascripts ;-)
If you share your code, we might be able to solve the next step.
not my code🤗.. using recaptcha plugin. Could use captcha all ok.. but when pressing register i got NO REPONSE form hcaptcha.
i think this is reponsible
I hope you meant that you have duplicated the recaptcha plugin and you are working on the copy ;-)
Have you tried inspecting your network console? That should give you clue what is happening, but from looking at the code I would say the problem is this:
The $api holds the address to the JavaScript file while it should only be the main site. The verification endpoint is given with the get request,
thanks👍️
not working...going to try question plugin.
Hi :D
Just made a hCaptcha implementation using the reCaptcha addon as a base.
Here you can get it: https://open.vanillaforums.com/addon/hcaptcha-plugin
But dont forget to first disable recaptcha on your dashboard, or you will have some conflicts between hCaptcha and reCaptcha.