10-14-2020, 04:55 AM
Hi
There is a captcha helper in CI3 but it doesn't exist in CI4 !
How should we implement captcha for forms?
There is a captcha helper in CI3 but it doesn't exist in CI4 !
How should we implement captcha for forms?
Captcha Helper
|
10-14-2020, 04:55 AM
Hi
There is a captcha helper in CI3 but it doesn't exist in CI4 ! How should we implement captcha for forms?
10-14-2020, 05:47 AM
well i take a birds eye view on this , its only my own view . Wordpress as default does not hide wp-admin login. My login page is not quoted anywhere on my site. Wordpress does not have a captcha as default. Wordpress does not as default limit limit attempts, mine via a session limits attempts to 5
So taking everything into account i just did my own captcha , its simply based on chr(rand(48,57)) and showing image with a integer relative to result of rand- not great but at least i understand my own code and its still better than WordPress which a large % on web use but otherwise you can integrate google captcha or other .
10-14-2020, 12:15 PM
Use Google Re-Captcha.
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
10-14-2020, 09:53 PM
I used this toturial to add google reCaptcha to my project:
https://www.webslesson.info/2020/10/how-...niter.html |