CodeIgniter Forums
CodeIgniter 3 and HMVC Load Modules in other Modules Session issue - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: CodeIgniter 3 and HMVC Load Modules in other Modules Session issue (/showthread.php?tid=66908)



CodeIgniter 3 and HMVC Load Modules in other Modules Session issue - Nitin Patel - 12-16-2016

Hi,

I am working on CodeIgniter 3 and HMVC and in this i am calling one modules in other modules. It's giving error like this : "Unable to locate the specified class: Session.php"

I try many alternate way to find solution but i am not getting so please help me to overcome from this problems.


Thanks,


RE: CodeIgniter 3 and HMVC Load Modules in other Modules Session issue - InsiteFX - 12-16-2016

You may need to get the CI Super Object.

Also you may need the newest version of HMVC.

Download wiredesignz HMVC for CodeIgniter 3.x

View Readme

Also make sure that you add this to your ./application/config/config.php file.

PHP Code:
$config['modules_locations'] = array(
 
   APPPATH.'modules/' => '../modules/',
);