Setting up Codeigniter HMVC with tank auth Setting up Codeigniter HMVC with tank auth codeigniter codeigniter

Setting up Codeigniter HMVC with tank auth


I found the same problem, but i solved by simple adding a comment to the

$this->load->library('security');

so it will look like this:

//$this->load->library('security');

since security its now part of the codeigniter core, i guess its already loaded by default, and everything seems to be working pretty good


it is in Helper now according to CodeIgniter 3.0 user guide

try:

$this->load->helper('security');


I fix this, by creating Security.php file in application/libraries directory with the following code:

require_once(BASEPATH.'core/Security.php');class Security extends CI_Security { }