Configuration and customization issues

Issues and solutions related to Faspex 5 configuration and customization.

App encountered an error in customize email templates page

If the App encountered an error message is shown when accessing the Admin > Notifications > Customize Email Templates there could be an error migrating the values for the alternate_address_content column in the m_templates table.

Run the following query to resolve the issue:
faspexctl exec faspex-db bash
mysql -u$FASPEX_DB_USERNAME -p$FASPEX_DB_PASSWORD faspex
alter table m_templates add column alternate_address_content text;

yaml: line 27: mapping values are not allowed here

The yaml: line 27: mapping values are not allowed here error may be shown during the installation. This can be related to the extra-host configuration of the docker-compose.yml file. To resolve this, delete the extra-hosts from the router, utility, core and service sections of the docker-compose.yml file. After that, run the Faspex setup again (faspexctl setup).