Known issues

- Connection errors with MySQL:

If NodeJS can't connect to your MySQL server is highly likely you are using a new version of MySQL authentication (schema vs native). In that case make sure to have mysql2 been set as your RELDENS_DB_CLIENT environment variable in the .env and in the knexfile.js files.

If you still see the issue, you can try by updating your DB user to use the old MySQL "native" password:

ALTER USER '<YOUR_USERNAME>'@'<YOUR_HOST>' IDENTIFIED WITH mysql_native_password BY '<YOUR_PASSWORD>';

Or create a new one with it:

CREATE USER '<YOUR_USERNAME>'@'<YOUR_HOST>' IDENTIFIED WITH 'mysql_native_password' BY '<YOUR_PASSWORD>';

- Imported class paths are disabled by default

As temporary solution, you need to fix the records directly in the database with a query like the following:

UPDATE `skills_class_path` SET `enabled` = 1;

- Known missing feature:

In the maps wizard when you create a map with association we need to display the sub-maps as well.

Last updated