Announcement

Collapse
No announcement yet.

New sub-admin account always starts at My Page

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • New sub-admin account always starts at My Page

    I've created a new sub-admin account with GUI access to Dashboard, Logging, and Report. When the new account logs in, it goes straight to My Page for a password reset. How can I configure the sub-admin account to go directly to the Dashboard when they log in?

    Nxfilter v4.6.6.4

  • #2
    That's the only page for a sub-admin for accessing without permission settings. So, that's the start page.

    If you want to change the start page for sub-admins, edit /nxfilter/guipack/sandwatch/admin.jsp. You need to change 'help,mypage.jsp' to 'dashboard.jsp'.

    Code:
           if(isAdmin()){
                // Start page for admin.
                response.sendRedirect("dashboard.jsp");
                return;
            }
            else if(isSubAdmin()){
                // Start page for sub-admin.
                response.sendRedirect("help,mypage.jsp");
                return;
            }

    Comment

    Working...
    X