Hey y'all! Is it possible to login into the admin area of Fuel CMS, but the first page that you see be an advanced module index page instead of the dashboard?
Yes. There is a configuration parameter of login_redirect that you can overwrite in your fuel/application/config/MY_fuel.php. The default value is the following:
// the page to redirect to AFTER logging in
$config['login_redirect'] = $config['fuel_path'].'dashboard';
Comments
Yes. There is a configuration parameter of
login_redirect
that you can overwrite in your fuel/application/config/MY_fuel.php. The default value is the following:Perfect! Thank you!