In my codeigniter application I'm using codeigniter HMVC. And it works fantastic!
But I want to have 2 modules folders:
- one in the
application/controllers/
folder - and one in the
applications/
folder.
I can't figure out how I need to change the modules_location
array so this will work.
At this moment my modules_location
looks like this :
$config['modules_locations'] = array(
APPPATH.'modules/' => '../modules/',
);
I just need to add one line to make this system working, but which one?