This is the URL to the "project" page: http://myServer/navserver/navtech/projects/calgary_2015_05_06 If you expose the admin bar and click "Logout", it redirects to: http://myServer/navserver/projects/calgary_2015_05_06 Which gives a 404. "navtech" is the module, but it's missing from the path. "navserver" is the fuel home directory. Any ideas what's wrong here?
Not really but I can tell you where to look. The default behavior for logging out is to go to the ":last" page and is specified in the main config and can be overwritten in your MY_fuel.php config file. $config['logout_redirect'] = ':last'; The last URL is set by the Fuel_admin::set_last_page method which will set the current URL at the end of rendering. It will also call it in the fuel/modules/fuel/controllers/module.php view method which is used for viewing a module that has a preview path specified.
Comments
$config['logout_redirect'] = ':last';
The last URL is set by the Fuel_admin::set_last_page method which will set the current URL at the end of rendering. It will also call it in the fuel/modules/fuel/controllers/module.php view method which is used for viewing a module that has a preview path specified.