1
votes

I am trying to find the answer to this question: why I appear in the login form in CodeIgniter Incorrect Login Version 3.03.

enter image description here

I Use: Default Login Username: [email protected] Password: password.

CodeIgniter-Ion-Auth.

Here is http://pastebin.com/659Ln2yL User extends CI_Controller. Log in code http://pastebin.com/Gfh8gPaV. In database a have code from CodeIgniter-Ion-Auth arhive. In autoload is ok

$autoload['libraries'] = array('database','form_validation','session','email'); 

$autoload['helper'] = array('html', 'url', 'security', 'form');
1

1 Answers

1
votes

shoudnt the line

 $identity = $this->input->post('email');

be

 $identity = $this->input->post('identity');

@usercontroller line 32