Firstly; I know the documentation touches this, but I find the documentation tricky to read (as I am also just starting with CI)
I read to allow a new custom module
; I simply need to add my module folder to the 'modules allowed' array. The below was commented out in my MY_fuel.php
So, since what I read referenced to do this in my MY_fuel.php
// Uncomment if you want to control FUEL settings in the CMS. Below are a couple examples of ones you can configure
$config['settings'] = array();
$config['settings']['site_name'] = array();
if (!empty($config['modules_allowed']))
{
$config['settings']['modules_allowed'] = array('blog' 'type' => 'multi', 'options' => array_combine($config['modules_allowed'], $config['modules_allowed']));
}
So, I uncommented this out; and added the 'blog
' right at the start of where the array(
is defined -- but it did not work!