Welcome Guest, Not a member yet? Register   Sign In
Ion Auth - Lightweight Auth System based on Redux Auth 2

[eluser]Thinkers[/eluser]
I have the same error of joytopia.
Anyone has managed to resolve the issue?

I am using CI2 and Ion_auth too.

For now, simply changing the controller construct from

Code:
function __construct()
    {
        parent::__construct();
        $this->load->library('ion_auth');
        /*-----------------------------------------*/
        $this->ion_auth->set_error_delimiters('','');
        /*-----------------------------------------*/
        $this->load->model("users_model");
        $this->load->model('messages_model');
        $this->load->helper('url');
        $this->load->helper('breadcrumb_admin');
        $this->load->helper('slug');
        $this->output->enable_profiler($this->config->item('debug_enabled'));
    }

to

Code:
function __construct()
    {
        parent::__construct();
        $this->load->library('ion_auth');
        $this->load->model("users_model");
        $this->load->model('messages_model');
        $this->load->helper('url');
        $this->load->helper('breadcrumb_admin');
        $this->load->helper('slug');
        /*-----------------------------------------*/
        $this->ion_auth->set_error_delimiters('','');
        /*-----------------------------------------*/
        $this->output->enable_profiler($this->config->item('debug_enabled'));
    }

seems to kick the error away.

EDIT: The issue is still present, so it is not related to the calling order in the controller.

Would you please check this? I have found no solutions yet.

Thank you.


Messages In This Thread
Ion Auth - Lightweight Auth System based on Redux Auth 2 - by El Forum - 11-18-2010, 04:31 PM



Theme © iAndrew 2016 - Forum software by © MyBB