# How to set up multi-user view account? ###### tags: `set up` `multi-user` `account` ## Steps - Within **user_main_nav_control** ==update users column== from no to yes therefore enabling that menu option to appear - Within **user_account_details** ==update homepage to be "users"== therefore enabling the users list to be the users homepage - Within **user_account_details** ==update dreamboat_crew to be "yes"== therefore enabling various access rights to the way the platform works - most critically a separated $_SESSION['viewing_user_id'] to $_SESSION['user_id'] which is critical to view other reports. Then the only remaining complication is when multiple pilots need access to the same user. Issue: within: *user_account_details* A one-to-one relationship exists between users and pilots. This then leads to a problem where ![](https://i.imgur.com/AOQHJn9.png) But instead what needs to happen here is that we have a secondary table where we split out **pilots_id** and **user_id** to match those then we pull out the rest of this. ![](https://i.imgur.com/ty1qgCb.png)