❌

Normal view

How to correct problems after upgrade 11.3.13 to 11.4.5

This morning after upgrading to 11.4.5 I cannot access config menu. Error is The website encountered an unexpected error. Try again later. It ha been a few hours, no change. I just checked the Statis report, same error. I can get into the recent log messages. I think I see the entry but have no idea how to fix. Here it is:

Message: Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'locale_file.hash' in 'SELECT': SELECT "locale_file"."project" AS "project", "locale_file"."langcode" AS "langcode", "locale_file"."version" AS "version", "locale_file"."timestamp" AS "timestamp", "locale_file"."hash" AS "hash", "locale_file"."last_checked" AS "last_checked" FROM "locale_file" "locale_file" WHERE ("project" = :db_condition_placeholder_0) AND ("langcode" = :db_condition_placeholder_1); Array ( [:db_condition_placeholder_0] => bartik [:db_condition_placeholder_1] => en-gb ) in Drupal\locale\CurrentImportStorage->get() (line 68 of /home/shirmkth8bfz/public_html/windsofhawi.com/drupal/core/modules/locale/src/CurrentImportStorage.php).

Below that is a much longer backtrace. Will post it if necessary. Any ideas?

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

Bulk update multi-select field selections

We have a content type with a multi-select field with (let's say) options A, B, C, D. A ton of nodes already have the field populated with content. We need to add an option E, and would like to have it selected if B is also already selected.

Is Views Bulk Operations with Views Bulk Edit our best (or only) option?

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

What we keep finding on Drupal 7 sites β€” anyone else seeing this?

We've audited a lot of Drupal 7 sites this year.

Same things keep showing up.

Modules nobody uses but nobody removed either. They just sit there. Unmaintained. Invisible until they're not.

Integrations the original developer built in 2016 and never wrote down. Current team has no idea what connects to what. We've had to reverse-engineer CRM connections from database logs because there was no other record they existed.

Custom themes nobody wants to touch. PHPTemplate, built when the site launched, last modified when someone added a banner in 2020. The institutional knowledge of how it works left with whoever built it.

PageSpeed scores under 40 on mobile. Not because the hosting is bad. Because nobody has looked at performance since the site went live.

And no process for security advisories. Drupal published 30 in July 2026 alone. Most of these teams knew about zero of them.

The one thing the better-maintained sites have in common: someone actually runs Upgrade Status and does something with what it finds. That's it. Not complicated.

Curious what others are seeing out there. Same patterns or different?

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

Friendly reminder: go vote for the community-elected board member before August 14 at 23:59 UTC!

The election for the community-elected At-Large board seat ends 14 August at 23:59 UTC.

If you’re a member of the Drupal Association as a Ripple Maker, check your inbox for a ballot from Helios voting bot with the subject line β€œVote now: Drupal Association 2026 At-Large Board Election”.

Also do take a moment to learn about the 8 candidates running, and vote for the person who you trust to advocate for the things that you believe are important: https://www.drupal.org/association/board/elections/election-2026-dates-and-candidates

To quote an awesome person from Drupal slack: β€œWe are going through a lot of change right now. The board, our community, our entire industry globally - everything is changing. This vote matters.”

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

Vibing Drupal: Choosing a model for Drupal development

Vibing Drupal: Choosing a model for Drupal development

I was starting to feel weighed down by token and cost anxiety, but everything shifted when OpenAI cut the price of GPT 5.6 Luna by 80%. This dramatic drop in cost per token completely transformed how I choose and use models for Drupal development.

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

how do you guys get Drupal clients?

it's hard enough to book WP sites...

how can a single freelancer book Drupal projects?

I've had a few over the years, but it was mostly by luck!

any tips or suggestions short of "my uncle owns the business", "word of mouth" or "I work at NASA" advice?πŸ˜…

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

anyone else tired of "just enable caching" being the answer to every slow Drupal site?

had a client last month whose site went from like 2s to 9s load time over the past couple years. support kept telling them enable caching and it'll be fine. it wasn't.

spent a day actually digging instead of just throwing cache at it and found the real problems -

images were like 5mb+ per page, nobody ever compressed them. 23 modules installed that literally weren't being used anywhere on the site. hosting was still running an old php version, not really set up right for D11. and no cdn, so every single asset was hitting the origin server directly

fixed all of it over about a week, didn't even touch caching config in the end. once the actual bloat was gone the default caching handled everything fine

not the first time i've seen this either, feels like half the "why is my site slow" posts jump straight to caching or hosting when its actually just years of stuff nobody cleaned up

what do you guys usually check first when someone says their drupal site is slow

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

migration gotchas

The thing that trips people up most isn't the module compatibility list β€” it's field data that technically migrates but silently loses formatting or reference integrity. Run a full content audit before you start, not just a module audit. Specifically check: paragraph/field collection nesting, any custom entity reference views, and URL alias patterns if you're on pathauto. Those three are where most "successful" migrations turn into a six-month cleanup project afterward.

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

Some more questions about moving from Drupal 7 to Drupal 11

I have an old Drupal 7 site that I can't seemingly migrate to drupal 11, Here's where I am at present:

I downloaded all the files from the existing site and created a ddev copy of the site with the same php version etc, the site renders and i can view all the nodes and such

I created a new ddev project running Drupal 11.4.4 and add a secondary db to that via ddev import-db --file=/home//Documents/Sites/sitename/databasename_2013.sql I also created .ddev/docker-compose.volumes.yaml so can mount the files etc from the drupal 7 site for the migration module as well as added the required modules that I used on the drupal 7 site if they existed

After running the migrate step via the extension Migrate Drupal UI I see that the images & users are imported in the new ddev Drupal 11 site, the images are too, but none of the nodes are done, I'm stumped on how to proceed now, I suspect the issue is related to multi languages as that site initially was drupal 6 and multi language enabled but not sure how to check now after all these years

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

can you activate drupal modules via the cli?

Currently looking into ddev and composer to manage stuff, but i'm unsure about the following

I know I can use eg composer to install modules eg: composer require 'drupal/ctools:4.1'

this will grab ctools but I still need to use the gui/site in drupal 11 to enable that, can't i activate it in the cli? Google is failing me atm

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

Ways to let AI build Drupal automatically

I am using codex to write modules for drupal now, it works perfectly without problem, but I have to manually upload to Drupal and communicate with codex for what happen, its still fine but bit slow, I am working between the site online and codex, am looking for a way to let codex work directly for the site, anyone has experience for this ? Thank you.

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

Are there any SEO-related Drupal modules people use?

Hello. I’m an SEO but new to drupal world. I have no idea about modules, how they work or how to use and finalise them. But I’m new to this job and it’s all about drupal.
And i’m a lil lost in all these modules. Is there a place where people get all the seo specific drupal modules? Or any modules anyone here would know that are a must for a drupal website? Please help a newbie out. :)

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

Any organizations still planning a Drupal 7 β†’ Drupal 11 migration?

With Drupal 7 reached end of life, I’m curious how organizations that haven’t migrated yet are approaching the transition.

● Are you planning a move to Drupal 11 in the next few months?
● What’s been the biggest blockerβ€”budget, custom modules, integrations, or migration complexity?
● If you’ve already completed the migration, what was the biggest challenge and what would you do differently?

I work with a team that focuses on Drupal migrations, so I’m interested in understanding the real-world pain points organizations are facing rather than making assumptions. It would be great to hear experiences from nonprofits, universities, healthcare organizations, and enterprise teams that are still evaluating their options.
Looking forward to hearing your experiences and learning from the community.

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

What's the Best Way to Get an AI-version of MoreLikeThis Working?

I've been trying various combinations of modules like ai_search and ai_vdb_provider_milvus and ai_vdb_provider_postgres but nothing seems to work well together. It's hard for me to find the best combination of Drupal versions (10 or 11) and module versions. Does anyone have any recommendations?

TIA

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

Anyone else still running Drupal 7 in production in 2026?

Been coming across a surprising number of Drupal 7 sites still live this year, even with EOL long behind us.

Curious what's actually holding people back is it cost of migration, custom modules with no clean upgrade path, or just "it still works, why touch it"?

Also curious if anyone's done a D7 β†’ D10/11 migration recently - what ended up being the most painful part?

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