diff --git a/templates/bundles/TwigBundle/Exception/error500.html.twig b/templates/bundles/TwigBundle/Exception/error500.html.twig
index 8f1e4667..08a989a1 100644
--- a/templates/bundles/TwigBundle/Exception/error500.html.twig
+++ b/templates/bundles/TwigBundle/Exception/error500.html.twig
@@ -7,20 +7,20 @@
{% block admin_info %}
{% if exception.class == "Doctrine\\DBAL\\Exception\\ConnectionException" %}
- Can not connect to database. Try follwing things:
+ Can not connect to database.
Try follwing things:
- Check if the database server is running
- Ensure that
DATABASE_URL
in .env.local
is correct: database name, user and password must be correct.
- Ensure that the database user has access to the database.
{% elseif exception.class == "Twig\\Error\\RuntimeError" and 'manifest.json' in exception.message %}
- Can not load frontend assets. Try following things:
+ Can not load frontend assets.
Try following things:
- Run yarn install and yarn build in Part-DB folder.
- Run php bin/console cache:clear
{% elseif exception.class == "Doctrine\\DBAL\\Exception\\InvalidFieldNameException" or exception.class == "Doctrine\\DBAL\\Exception\\TableNotFoundException" %}
- Invalid or not existing database schema. Try following things:
+ Invalid or not existing database schema.
Try following things:
- Check if the
DATABASE_URL
in .env.local
is correct
- Run php bin/console doctrine:migrations:migrate to upgrade database schema