-
Users Handbook
-
-
-
- Intro & Basics
- All Objects have Descriptions
- Check for unused procedures
- Compiled Procedures up to date
- Invalid Source Layers
- Required Columns
- Check for abnormally ended Jobs
- Check for blocked Jobs
- Check for disabled Tasks
- Check for duplicate tasks in different Jobs
- Check for duplicate tasks in same Job
-
-
-
Administrators Handbook
-
- Register URL
- Configure SSL/HTTPS
- Configure Proxy-Server
- How to edit the appsettings.json file
- System Settings
- Global Parameters
- Allow Service Account to Logon as a Service
- LDAP & SSO Authentication
- Migrating Testcases and Configuration
- Licenses Management
- Manual Configuration
- Exposing the BiG EVAL REST API to other Network Segments
-
- Articles coming soon
-
Developers Handbook
-
Known Problems
-
Demo Virtual Machine
-
Release Notes
-
General
KB#428 – Navigation Menu doesn’t appear
- Home
- Known Problems
- KB#428 – Navigation Menu doesn't appear
Problem
The main navigation menu on the left side (and somtimes other UI elements) doesn’t appear after login. Even after refreshing the browser, it persists hidden.
Cause
In rarely cases it happens that a user-setting gets stored twice in the BiG EVAL database. This leads to inconsistencies in the user interface. Ultimately, the user interface is not able to load the main navigation menu.
Solution
This problem is solved by removing all duplicated user settings from the BiG EVAL database. This can be done a) manually by editing the UserSettings-table, or b) by dropping all records of the UserSettings-table.
Option b) is easier to do, but comes with losing all user settings. The user settings only store things like the visibility of the training resources on the Overview dashboard or also the last selected main menu item. Therefore, no important things would be lost when choosing option b).
Option A)
- Use a tool like SQL Server Management Studio to edit the records of the table dbo.UserSettings within the BiGeval database.
- Identify all duplicated records by the combined key UserId and Key.
- Delete all duplicated records.
- Restart the BiG EVAL Windows Service
Option B)
- Use a tool like SQL Server Management Studio to run the following query against the BiGeval database.
DELETE FROM [dbo].[UserSettings]
2. Restart the BiG EVAL Windows Service