Nandini Bhaduri

Results 3 comments of Nandini Bhaduri

The ion_auth is loaded from autoload.php ``` /* | ------------------------------------------------------------------- | Auto-load Packges | ------------------------------------------------------------------- | Prototype: | | $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared'); | */ $autoload['packages'] = array(APPPATH. 'third_party/ion_auth'); /*...

Yes, I tried to manually load the library in the Stream class constructor... ``` log_message('error','Before Loading ion_auth'); $this->load->library('ion_auth'); log_message('error','After Loading ion_auth'); log_message('error',isset($this->ion_auth) ? "Ion Auth Set":"Ion Auth not Set"); log_message('error',isset($this->ion_auth_model)...

Tried that too. The error goes away but the groups didn't get deleted in the following code - ``` $this->ion_auth->delete_group($groupid); ```