Hi All,
I am Try to build log in application using Flexi Auth library (using Codeigniter 2.2). For my requirement I am using Query Builder function with log in function.
My code :
$sql_where = array(
'uacc_group_fk' => 1,
);
$this->_ci->flexi_auth->sql_where($sql_where);
$response['success'] = $this->_ci->flexi_auth->login($email_or_userid, $password, $remember);
But When I run my application it's giving 500 Internal Server Error. Please look at the issue.