I have the following problem with CodeIgniter 3.1.6 and WireDesignz HMVC.
When using modules::load on a windows dev machine (using Apache etc) its working, but when uploaded to my Debian machine it ain't working.
$class = modules::load('page/Page');
var_dump($class);
if (method_exists($class, '_DoAction'))
{
//More shizzle
}
It's gives me NULL with var_dump on Debian, while in Windows it's continues with inside the IF loop.
The folder structure of the modules directory is as follow
/plugins/page/controllers/Page.php and the class is called Page.
The folder plugins is in web root and the System and Application directory is outside the web root.
Anyone a clue ?
Edit: looks my routes are also not working.
Edit 2: Looks like something is not correct with my development Debian installation, because pushing the code to another Linux server, it is working! Also it's only HMVC that aint working. It's there some log where I can find errors ?