diff --git a/templates/bundles/TwigBundle/Exception/error.html.twig b/templates/bundles/TwigBundle/Exception/error.html.twig
index ea9b5849..eb3da877 100644
--- a/templates/bundles/TwigBundle/Exception/error.html.twig
+++ b/templates/bundles/TwigBundle/Exception/error.html.twig
@@ -33,7 +33,7 @@
{% block admin_info %}
You could try to do following things, if this error is unexpected:
- - Check
var/log/prod.log
for additional informations
+ - Check
var/log/prod.log
(or docker logs
when Part-DB is running inside a docker container) for additional informations
- Run php bin/console cache:clear to clear cache
{% endblock %}
diff --git a/templates/bundles/TwigBundle/Exception/error500.html.twig b/templates/bundles/TwigBundle/Exception/error500.html.twig
index 0ec83ec0..c709e189 100644
--- a/templates/bundles/TwigBundle/Exception/error500.html.twig
+++ b/templates/bundles/TwigBundle/Exception/error500.html.twig
@@ -22,14 +22,14 @@
{% elseif exception.class == "Doctrine\\DBAL\\Exception\\InvalidFieldNameException" or exception.class == "Doctrine\\DBAL\\Exception\\TableNotFoundException" %}
Invalid or not existing database schema.
Try following things:
- - Check if the
DATABASE_URL
in .env.local
is correct
+ - Check if the
DATABASE_URL
in .env.local
(or docker configure) is correct
- Run php bin/console doctrine:migrations:migrate to upgrade database schema
- Run php bin/console cache:clear
{% else %}
You could try following things, if this error is unexpected:
- - Check
var/log/prod.log
for additional informations
+ - Check
var/log/prod.log
(or docker logs
when Part-DB is running inside a docker container) for additional informations
- Run php bin/console cache:clear to clear cache
{% endif %}