Tag: Drupal
PHP Fatal error: Uncaught Error: Call to undefined method GuzzleHttp\Utils::chooseHandler() – Drush
In a local Drupal 9 site, set up using DDEV from a site hosted on Acquia, every time I need to run a drush command I get the following error: The workaround We need to install Drush in the project folder. running this command: composer require –dev drush/drush And then, we can execute the local…
What are the benefits of PHP 8.1 and the Commands to upgrade from an older version on Nginx?
PHP 8.1 is the latest version of the popular server-side scripting language, and it brings a host of new features and improvements that make it a compelling choice for developers. In this article, we’ll highlight some of the key benefits of upgrading to PHP 8.1.
Drupal 10, a quick overview
Drupal 10 is the latest version of the popular open-source content management system (CMS) Drupal, released on December 14th, 2022. It marks the culmination of over two years of development and brings with it numerous new features and improvements. One of the key features of Drupal 10 is its support for modern web development practices.…
Drupal 8+ media module does not create the default bundles (Media Types) after installation
When the media module that is part of the the Drupal 8+ core is installed, we expect that the default media entity types, [Document, Image, Audio file (local), Video file (local), Remote video ] get created automatically, so they are available when creating a new media field. But, that is the case when we are…
The most used drush commands in Drupal 8+
drush status drush cex –destination=path/to/export-config drush cim drush updb drush generate drush sql-dump –gzip –result-file=./sites/default/files/YOUR-FILE-NAME.sql Export a database compressed as gzip
How to setup a WordPress or Drupal site locally with ddev
DDEV is an open source tool that allows setting up local sites using docker, quickly. You will learn from my experience with it about how to use it, and some helpful commands.
How to co-install composer 1 and composer 2
If you followed the steps at How to set-up a Drupal or WordPress site locally using Docker to set-up a local Drupal 8 site using docker, you will find that the PHP container has composer2 and that Drupal 8 is not compatible with it. The easiest way to get composer 1 up and running when…
How to set-up a Drupal or WordPress site locally using Docker
This article is not aiming to provide explanations about the tools that I use to set-up Drupal/WordPress sites, I think there is a lot of information available on the internet about them Docker, Traefik, Compose. The only goal of this post is to document the process that I follow since it is really easy, and…