DDEV Multisite
Run multiple sites in DDEV with a shared Drupal codebase and contrib modules.
Why?
With a multisite, the sites all share the core...
Run multiple sites in DDEV with a shared Drupal codebase and contrib modules.
With a multisite, the sites all share the core...
Lando and DDEV are both wrappers for docker containers that make it easy to set up a local development environment.
I have used...
MariaDB released a change that breaks importing database dumps that were made from an updated database.
The change was made for...
Details about a breaking change with MariaDB Dump, and how it's fixed in DDEV.
The latest imagick release in pecl repositories is not yet compatible with 8.3.
The workaround is to compile it manually by cloning the repo and running make commands inside the docker container.
Here's how to do it in lando:
.lando.yml
services:
appserver:
build_as_root:
- /app/scripts/imagick.sh
scripts/imagick.sh
Imagemagick is a graphics manipulation library.
Imagick is the PHP extension.
The version of Debian used in DDEV does not have php8.3 libraries available in the package manager yet.
https://packages.debian.org/stable/php/php-imagick
However, there is a way to install the latest php libraries.