🐛 | Easy Breadcrumb | Easy Breadcrumb broken page with update module 2.0.6, some code work with 2.0.5
🇮🇹Italy sjpagan
sjpagan → created an issue.
🐛 | ImageMagick | DivisionByZeroError: Division by zero in template_preprocess_image_style_preview() (line 51 of core/modules/image/image.admin.inc).
🇮🇹Italy sjpagan
Hi,
in my case had a wrong configuration on Dockerfile, I solved it like this:
FROM php:8.1.6-apache
RUN apt-get update && apt-get install -y \
libwebp-dev \
libpng-dev \
libjpeg-dev \
&& docker-php-ext-install -j$(nproc) gd \
&& docker-php-ext-configure gd --with-freetype --with-webp --with-jpeg \
&& docker-php-ext-install gd
The problem is due to a wrong configuration of GD on the server and not to the code.