Normal view

Received — 13 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

Upgrading a Theme from D10.4.3 to D11

I currently have a custom Drupal theme that is working well with Drupal 10.4.3. I am planning to upgrade to Drupal 11, as it appears to be the stable, long-term supported version.

What is the recommended process for upgrading a theme from Drupal 10.4.3 to Drupal 11?

For context, I previously migrated my site from Drupal 7 to Drupal 10. During that transition, I had to rewrite the theme from scratch due to major architectural changes. I am hoping that such a complete rewrite will not be necessary when upgrading from Drupal 10 to Drupal 11.

Any guidance or best practices would be appreciated.

submitted by /u/Great_Banana_123
[link] [comments]

DrupalBench: Benchmarking LLMs on Drupal 11 Engineering Standards

As is all the rage right now (or maybe 2 months ago, I dunno anymore), I vibe-coded a benchmarking tool. It automatically creates verifiable tasks from core issues and crafts a few synthetic tasks from change records. It then asks the LLM to generate a patch to fix the issue after we've "unfixed" it in a docker container. Then we apply the LLM's patch and run relevant tests. If they pass, the task is considered completed successful.

The idea was to create a tool to measure how well open-weights LLMs know Drupal 11, so they don't get to use search or any tools. Gemini 3 Flash is just in there as reference. Currently, only core is covered, but I'm planning to expand to some of the major contrib modules like webform and paragraphs.

If you'd like me to test specific models, do let me know, preferably something that fits within my puny 4070's 12GB VRAM.

I used Nano Banana to generate a diagram of how it works.

submitted by /u/BirdlessFlight
[link] [comments]
Received — 12 February 2026 Drupal - Open Source Content Platform | #Celebr8D8
Received — 10 February 2026 Drupal - Open Source Content Platform | #Celebr8D8
Received — 7 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

Where Drupal Still Wins in 2026?

Where Drupal Still Wins in 2026?

Hello Drupalists, I haven't been in the PHP world for a while, which has slightly changed my perspective on the web, which has changed a lot in the meantime - I decided to write down my fresh impressions in the form of a series of posts - this is the first one.

submitted by /u/Firflant
[link] [comments]
Received — 6 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

Multi users with single account

Hi, i've question, we use openID with cognito after login Drupal save email and username but we don't want save the email and we are evaluting two options.

  1. create random email first login OpenID

  2. all visitors use one single account, the user login only view page.

for second option we are one question, for drupal security or generic drupal When hundreds of users are logged in with a single user, can it create any problems?

help me please resolve this question it's very important.

submitted by /u/oncelot_dev
[link] [comments]
Received — 5 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

Drupal Status Report: “Mismatched entity and/or field definitions – Consumer entity needs to be updated”

Drupal Status Report: “Mismatched entity and/or field definitions – Consumer entity needs to be updated”

Has anyone faced this issue before?
The site works fine, but this keeps showing in the status report.

Please help me understand why this happens and how to fix it properly.

Thanks!

submitted by /u/Prasanna-Venkat
[link] [comments]
Received — 4 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

Are there any online communities that are powered by Drupal?

With the capabilities of Drupal, creating an online community seems relatively easy.

However, given my limited experience, apart from drupal.org, I haven't seen any large-scale communities built with Drupal.

Does anyone know of any online communities or social media platforms that use Drupal for both their front-end and back-end development?

This post might seem pointless to some; it's simply my own curiosity.

submitted by /u/FreeGene8005
[link] [comments]
Received — 3 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

A Jump From D7 -> D11 (a Procrastinator’s Journey)

Wow, what a switch. My legacy PHP 7 on my hosting was becoming problematic, so I finally copied all the core content to XLS, nuked the D7 install, installed D11.3 from scratch. Man I miss the “Recent Hits” log for discerning bots & spam from legit visitors (deprecated apparently). What do you miss? Did you ditch after D7? It’s refreshing to see despite all AI “solutions”, advent of Squarespace, Shopify, et al that there’s still a dedicated community. 25 years 🎂🤘.

submitted by /u/ThoseArentMyBalloons
[link] [comments]

drupal 11 canvas cant see header and footer

I have fresh install drupal 11/cms. I have byte_theme as parent and my custom theme. When i switch to child i cant see header and footer.

https://preview.redd.it/a6c9nwc7n8hg1.png?width=565&format=png&auto=webp&s=a12f022f1c7389140b417fd075ba2253e366108d

regions:
content: 'Content'
header: 'Header'
footer: 'Footer'
dependencies:
- "canvas:canvas"
- "cva:cva"

How can i add footer header to be visible using canvas.

When i switch to base i can see that elements on canvas. Is there some config i`m missing ?

submitted by /u/felek007
[link] [comments]
Received — 2 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

Unable to revert or remove cva module updates?

After I updated Drupal Core, the cva module, and the canvas module I cannot access any admin pages. I get a 'The website encountered an unexpected error. Try again later.' message.

I tried to revert the changes, but was only able to force canvas and core back to the version I had before I updated. I've tried uninstalling/ using remove on cva but nothing is working. I'm not sure why this module is so stubborn, is it somehow connected to something I'm missing?

I've tried --with-all-dependencies (-W)
but everything I've run says there's nothing to modify in the lock file and nothing to install update or remove

submitted by /u/bebebeanboi
[link] [comments]

Deploying Drupal with Docker and Gitlab CI

Hello fellow Drupal Users,

I currently working on a DevOps flow for our Drupal deployments. There is a template available I based my work on:
https://github.com/dunglas/frankenphp-drupal/blob/main/Dockerfile

My idea was to use frankenphp to create a Container that can be spun up on the appropriate server. I have finished the gitlab-ci.yml and it builds.

I am doing heavy multisite (50+ sites). I want to mount the sites directory from the current environment into the container. This works pretty well, except for when files are changed. (For example settings.php is changed.)
Is there something I can do so frankenphp catches file change without restarting?

The whole codebase is freshly installed using composer and copied into the container. I was unable to use ssh-links inside my composer.json (I was unable to make SSHing from the build container to my Gitlab work) and instead opted to use https-links that are supplied a CI-Token using buildkit.

Is this a viable way to ship containerized drupal? Are there templates or tools out there I can learn from or any best practices or experiences you want to share?

submitted by /u/splatterb0y
[link] [comments]

How do I migrate drupal 7 -> drupal 10+

Hello, company I work for has website in drupal 7 and they asked me to uprage it to drupal 10. I already learned that this upgrade is not possible because of this big jump between those versions. So I'm gonna have to re-platform the website and migrate the data. Can anyone tell me the best/easiest way to do that please?

submitted by /u/Practical_Put8909
[link] [comments]
Received — 1 February 2026 Drupal - Open Source Content Platform | #Celebr8D8

Drupal 11.3.2 update problem

Hello everyone,

After updating to the latest Drupal version 11.3.2, I’ve encountered serious issues with the site’s functionality. I’m unable to add new content, and access to reports is completely blocked. I tried overwriting the files with an older version, but that didn’t help. As a temporary measure, I’ve switched the site to developer/update mode to mitigate the impact.

Has anyone experienced a similar issue or might know what could be causing this?

Any advice would be greatly appreciated.

submitted by /u/PersimmonWarm1575
[link] [comments]
❌