Login to different page?

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?

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:

    // the page to redirect to AFTER logging in
    $config['login_redirect'] = $config['fuel_path'].'dashboard';
    
    
  • Perfect! Thank you!

Sign In or Register to comment.