Recently a user told us that only the first page of their PDF was showing, and all subsequent pages were just showing as tiny dots: After a little debugging we found an issue with Chrome that was related to this. To reproduce the bug the following must be true: The…
Category: Drupal
Drupal Status Color Codes
This has bugged me for a long time. If you visit any project issue page on Drupal.org you’ll find a bunch of different color-coded table rows. What the heck do the colors mean!!! It has always bothered me, but today I decided to finally dig in. This process wasn’t hard…
You have requested a non-existent service “media_entity.cli”
We upgraded a Drupal site to 8.7 that had used media_entity previously and we needed to get it converted over to core’s media module. We followed all of the directions but we kept running into the error: You have requested a non-existent service “media_entity.cli” After a bunch of trial and…
Installing drush via composer on Drupal 8.3 throws errors
We recently had a problem installing drush on a new site. After we ran the following (we have a local composer) ./composer.phar require drush/drush:^8 We received this giant error message: ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved…
Adding two-factor authentication to Drupal 8 using Google Authenticator
The instructions are based on Drupal 8.2.6. Parts, such as upgrade random_compat, might not be applicable in later versions. I can’t make any guarantees about running these in earlier versions. Install Christian Riesen’s OTP (One Time Password) From the drupal site root run: composer require christian-riesen/otp Upgrade random compat Drupal…
Drupal 8 Redis Configuration
As of today (February 14, 2017) the Redis plugin on D8 is on beta 1 and appears to be pretty stable, however the documentation appears to be lacking a bit. (I know, I should contribute and maybe I will later this week). There’s a lot of different advice/instructions for setting up…