Welcome Guest, Not a member yet? Register   Sign In
Codeigniter website PHP code theme not working to register & Login
#5

(This post was last modified: 09-10-2020, 09:21 PM by Omar Crespo.)

The problem seems to be with $password, it has no value.Try this way:

Code:
    function _check_login()
    {
        // limit number of login attempts
        $ok_to_login = $this->users_model->login_attempts();

        if ($ok_to_login)
        {
            $login = $this->users_model->login($this->input->post('username', TRUE), $this->input->post('password',TRUE));

            if ($login)
            {
                //your site secret key
                $secret = $this->settings->google_secret;
Reply


Messages In This Thread
RE: Codeigniter website PHP code theme not working to register & Login - by Omar Crespo - 09-10-2020, 09:15 PM



Theme © iAndrew 2016 - Forum software by © MyBB