diff --git a/templates/bundles/TwigBundle/Exception/error500.html.twig b/templates/bundles/TwigBundle/Exception/error500.html.twig
index 40a418c2..a4e5827b 100644
--- a/templates/bundles/TwigBundle/Exception/error500.html.twig
+++ b/templates/bundles/TwigBundle/Exception/error500.html.twig
@@ -17,7 +17,7 @@
Can not load frontend assets.
Try following things:
- Run yarn install and yarn build in Part-DB folder.
- - Run php bin/console cache:clear
+ - Run php bin/console cache:clear and php bin/console cache:pool:clear --all
{% elseif exception.class == "Doctrine\\DBAL\\Exception\\InvalidFieldNameException"
or exception.class == "Doctrine\\DBAL\\Exception\\TableNotFoundException"
@@ -26,21 +26,21 @@
- 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
+ - Run php bin/console cache:clear and php bin/console cache:pool:clear --all
{% elseif exception.class == "Doctrine\\DBAL\\Exception\\DriverException" %}
Error while executing database query.
This is maybe caused by an old database schema.
Try following things:
- Check if the
DATABASE_URL in .env.local (or docker configure) is correct
- Run php bin/console doctrine:migrations:migrate to upgrade database schema (if upgrade is available)
- - Run php bin/console cache:clear
+ - Run php bin/console cache:clear and php bin/console cache:pool:clear --all
- If this issue persist, create a ticket at GitHub.
{% else %}
You could try following things, if this error is unexpected:
- 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
+ - Run php bin/console cache:clear and php bin/console cache:pool:clear --all to clear caches
{% endif %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}