Would like to add dashboard as home page for all users.
Would like to add dashboard as home page for user.
Would like to add dashboard as landing page for all users.
Would like to add dashboard as landing page for user.
Would like to add dashboard as start page for all users.
Would like to add dashboard as start page for user.
Release : 3.7
Component : IM Reporting / Admin / Configuration
There is no way to do this in the console, but we can set it using mysql.
mysql netqosportal -unetqos -ppassword (replace password)
select userid,name,homepagepageid from user_definitions where name='username';
update user_definitions set homepagepageid=<PageId> where name='username';
Note: to modify for all users just omit the where clause.
update user_definitions set homepagepageid=<PageId>;
select userid,,name,homepagepageid from user_definitions;
Now proxy in as a few users and verify it worked.