Welcome Guest, Not a member yet? Register   Sign In
Captcha doest work on Linux Ubuntu 16.04
#1

Hi guys,
Why the captcha doest work on Ubuntu Linux, I followed exactly like the User guide and even try to watch some videos from youtube, I followed exactly like they did and I also already create the captcha directory on the root directory CI.
But still doest work? What should I do? Pls help.. Thanks a lot

Here is my controller  script:

public function index()
    {
        $this->load->helper('captcha');

        $vals = array(
                    'img_path'        =>    './captcha/',
                    'img_url'        =>    base_url().'captcha/',
                    'expiration'    => 7200,
                    'word_length'    => 8,
                    'font_size'        => 22
        );
        $cap = create_captcha($vals);
        $data['captcha'] = $cap['image'];

        $this->load->view('index', $data);
    }

And this is the views:

                   <div class="form-group">
                        <div class="col-md-5 col-md-offset-2">
                            <?php echo $captcha; ?>
                        </div>
                        <div class="col-md-5">
                            <a href="javascript:;"><i class="glyphicon glyphicon-refresh"></i>REFRESH CAPTCHA</a>
                        </div>
                    </div>

I will appreciate your helps... Thanks
Reply
#2

Is base_url correct? I recommend you use recaptcha2 better than CI captcha.
Reply
#3

(01-07-2019, 05:17 PM)Camp1 Wrote: Is base_url correct? I recommend you use recaptcha2 better than CI captcha.

I recommend Google Captcha V3. It's safer than codeigniters!
Reply
#4

Just a note to new users of CodeIgniter.

PHP Code:
base_url().'something';

can be written like this like a method.

base_url('something'); 

It looks cleaner like that.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB