mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

356K
active users

#Drupal10

0 posts0 participants0 posts today

Basic Setup For Drupal 10 in AWS

Basically the environment will consist of an Application Load Balancer (ALB), two or more Elastic Compute Cloud (EC2) instances, an Elastic File System (EFS), and a Relational Database Service (RDS) instance. The EFS provides shared file storage for the EC2 instances to access, while the RDS instance provides the MySQL database that Drupal will use, and the ALB distributes incoming web traffic to the EC2 instances. It is critical to understand that each of these components will bet setup with redundancy and fail-over capability across two or more Availability Zones (AZs) in a single AWS Region.

Source: Setup Drupal 10 with High Availability in AWS Linux 2023 | SYSOPS GUIDE

Article gives a good basic starting setup getting Drupal up and running in AWS and leveraging AWS tools. I will be interested in seeing how it scales.

sysopsguide.comSetup Drupal 10 with High Availability in AWS Linux 2023 | SYSOPS GUIDE

Vielleicht gibt es im Fedivers nette und hilfsbereite Menschen die sich mit Drupal 10 (CMS Content-Management-System ) auskennen!
Mein Umstieg von Drupal 7 auf Drupal 10 verläuft leider etwas holprig, und ich hoffe, es gibt jemand der mir bei einigen scheinbar kleinen Stolpersteinen weiterhelfen kann.
Aktuell habe ich folgendes Problem: Ich möchte im Benutzermenü die Anzahl der ungelesenen Nachrichten anzeigen lassen. In Drupal 7 hat das einwandfrei funktioniert, aber in Drupal 10 stoße ich auf Schwierigkeiten.
Hier die Details:
In Drupal 10: Modul Private Messages (privatemsg), Version 2.0.0-rc10
In Drupal 7: Modul Private messages Version 7.x-1.4
Gibt es eine Möglichkeit, die Anzahl der ungelesenen Nachrichten im Benutzermenü unter Drupal 10 ebenfalls für die jeweils angemeldeten Benutzer anzeigen zu lassen?
z.B.
bei -Verwaltung - Ansichten -Benachrichtigungen ?
oder
-Verwaltung - Struktur -PrivateMsg Message Settings
oder
- Verwaltung - Struktur -PrivateMsg Thread Settings

Vielen Dank für eure Unterstützung!

Working on a task to migrate civicrm which is using drupal-7 to drupal-10, for this we need to upgrade from php7.2 to php8.2.

Compared the tables of drupal 7 and drupal 10, there are so many new tables in drupal 10, no idea if these are new tables or they have renamed some of the old tables.

Let me know if anyone has any experience in migration of drupal / civicrm

Registrations are now open for DrupalCon Singapore 2024! 🎉

Join us at the luxurious PARKROYAL COLLECTION Marina Bay from December 9-11, 2024, for three days of epic Drupal content, training, networking, and the inaugural DrupalCon Splash Awards.

The first 50 ticket buyers get the special early bird rate!

🎟️ Sign up today events.drupal.org/singapore202

Continued thread

‘Symfony\Component\HttpKernel\Exception\ControllerDoesNotReturnResponseException: The controller must return a “Symfony\Component\HttpFoundation\Response” object but it returned null. Did you forget to add a return statement somewhere in your controller?’

A little intimidating, but a very clear indication of how I messed up. Feels like a big difference since Drupal 8. This looks like a Symfony improvement (IIRC). The resultant Drupal error is still quite verbose without a clear link to what you did wrong.