It looks like you're new here. If you want to get involved, click one of these buttons!
First, I apologize if this part is not right to post solutions to bugs, but I don't know where to put it.
DESCRIPTION:When I change the fuel_path configuration in fuel/application/config/MY_fuel.php (e.g $config['fuel_path'] = 'admin/') and I try to access to the user_guide module (e.g. http://mysite.com/admin/tools/user_guide), appears a blank page.
FIX:Change the config variable "user_guide_root_url" (in fuel/modules/user_guide/config/user_guide.php, line 21) from:
$config['user_guide_root_url'] = FUEL_FOLDER.'/tools/'.USER_GUIDE_FOLDER.'/';
to
$config['user_guide_root_url'] = FUEL_ROUTE.'tools/'.USER_GUIDE_FOLDER.'/';
Because actually the user_guide_root_url points out to the fuel folder, not the real fuel url.
Comments
https://github.com/daylightstudio/FUEL-CMS/tree/1.0
https://github.com/daylightstudio/FUEL-CMS-User-Guide-Module
I've made the above change to fuel/modules/user_guide/config/user_guid.php, but that doesn't help.
[code]
// the URI path to the user guide
$config['user_guide_root_url'] = FUEL_ROUTE.'/tools/'.USER_GUIDE_FOLDER.'/';
[/code]
P.S. new to the forums, where would I find markup reference?
For markup, you can use the "code" tag.
in fuel/modules/user_guide/config/user_guide.php
// the URI path to the user guide $config['user_guide_root_url'] = FUEL_ROUTE.'/tools/'.USER_GUIDE_FOLDER.'/';
in application/config/MY_fuel.php
// path to the fuel admin from the web base directory... MUST HAVE TRAILING SLASH! $config['fuel_path'] = 'admin/'; $config['fuel_mode'] = 'auto'; // specifies which modules are allowed to be used in the fuel admin $config['modules_allowed'] = array( 'user_guide', 'blog', 'backup', 'seo', 'validate', 'tester', 'cronjobs' );
from to