CI 3 HMVC Modular Extensions can't load Session Library - 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: CI 3 HMVC Modular Extensions can't load Session Library (/showthread.php?tid=50019) Pages:
1
2
|
CI 3 HMVC Modular Extensions can't load Session Library - mdixon18 - 04-02-2015 I am working locally with CodeIgniter, now, I've installed HMVC Modular Extensions. Now every time I try to load the Session library I get this problem: Code: A PHP Error was encountered RE: CI 3 HMVC Modular Extensions can't load Session Library - mdixon18 - 04-02-2015 I've noticed that I cannot include any Libraries, I am using CI 3.0 and HMVC for CI 3.0... Installed correctly as far as the steps directed me to do so. But yeah I cant use any libraries. Any ideas? RE: CI 3 HMVC Modular Extensions can't load Session Library - frocco - 04-02-2015 I am using the sessions database driver with no issues. I changed it to files and it works also. Code: $config['sess_driver'] = 'files'; RE: CI 3 HMVC Modular Extensions can't load Session Library - mdixon18 - 04-02-2015 It worked fine for me too until I added HMVC RE: CI 3 HMVC Modular Extensions can't load Session Library - frocco - 04-02-2015 That is what I am using with CI3 and HMVC with no issues. Are you sure you have the HMVC CI3 version? RE: CI 3 HMVC Modular Extensions can't load Session Library - mdixon18 - 04-03-2015 They only have 1 download now so I guess so RE: CI 3 HMVC Modular Extensions can't load Session Library - Krycek - 04-03-2015 Yeah the download link has merged (see commits) RE: CI 3 HMVC Modular Extensions can't load Session Library - mdixon18 - 04-03-2015 But I've noticed it does it too without HMVC So I think it's a permission problem. Using windows 8.1 Problem occurs with AMPPS/MAMP/XAMP using clean codeignighter 3.0.0 I don't know what to do RE: CI 3 HMVC Modular Extensions can't load Session Library - frocco - 04-03-2015 Did you try changing sessions to use database? RE: CI 3 HMVC Modular Extensions can't load Session Library - mdixon18 - 04-03-2015 How do you do this In CI3 either the documentation isn't updated or I'm looking in the wrong place. As i would like to use database for sessions |