Registration with CodeIgniter Ion Auth
问题 I am trying to register a user with Ion Auth, but the register() function does not seem to report any error messages. How does one register with Ion Auth? I've already read various tutorials like this one and this one (and the documentation), but they do not seem to be working. function register() { // do not allow registration if logged in if ($this->ion_auth->logged_in()) { redirect('/'); } $this->load->helper(array('form', 'url')); $this->load->library('form_validation'); $this->form