Comments on: How to Implement Captcha in CodeIgniter using Captcha Helper https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/ Web & Mobile App Development Company Sat, 01 Jun 2019 06:34:48 +0000 hourly 1 By: Karthikeyan Murugan https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-86576 Sat, 01 Jun 2019 06:34:48 +0000 https://www.codexworld.com/?p=1682#comment-86576 Thank you very much for this coding. It’s working good.

]]>
By: CodexWorld https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-56704 Sat, 05 May 2018 07:25:47 +0000 https://www.codexworld.com/?p=1682#comment-56704 In reply to siddharth.

Yes, use the pool option in Captcha configuration.

// Captcha configuration
$config = array(
    
'img_path'      => 'captcha_images/',
    
'img_url'       => base_url().'captcha_images/',
    
'img_width'     => '150',
    
'img_height'    => 50,
    
'word_length'   => 8,
    
'pool'   => abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ,
    
'font_size'     => 16
);
$captcha create_captcha($config);
]]>
By: siddharth https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-56703 Sat, 05 May 2018 05:45:03 +0000 https://www.codexworld.com/?p=1682#comment-56703 can i show only numbers in captcha image instead of word

]]>
By: Krishna Kanth https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-54675 Sun, 11 Mar 2018 02:53:07 +0000 https://www.codexworld.com/?p=1682#comment-54675 Where can I change the background image/color. And where should I increase the font size

]]>
By: Muhammad Umar Bilal https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-54585 Wed, 07 Mar 2018 12:04:54 +0000 https://www.codexworld.com/?p=1682#comment-54585 Thanks for help..!

]]>
By: sreejith https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-44253 Mon, 03 Apr 2017 10:39:40 +0000 https://www.codexworld.com/?p=1682#comment-44253 this code is working….

]]>
By: Johan van de Merwe https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-41442 Fri, 24 Feb 2017 16:16:24 +0000 https://www.codexworld.com/?p=1682#comment-41442 Thank you very much for this code. I was a great inspiration to implement it in my own program. It helped me how to have an Ajax refresh button on my login page.

]]>
By: CodexWorld https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-34971 Fri, 18 Nov 2016 09:03:23 +0000 https://www.codexworld.com/?p=1682#comment-34971 In reply to Rajkamal.

You’ll find the captcha helper in system folder – /system/helpers/captcha_helper.php

]]>
By: Rajkamal https://www.codexworld.com/implement-captcha-codeigniter-captcha-helper/comment-page-1/#comment-34969 Fri, 18 Nov 2016 08:06:06 +0000 https://www.codexworld.com/?p=1682#comment-34969 where is that helper file in codeigniter-captcha-helper folder?

]]>