#Multisite

2025-06-23

Real Cookie Banner – Ein Jahr Praxiseinsatz im WordPress-Alltag
Vor gut zwölf Monaten haben wir Real Cookie Banner (RCB) erstmals produktiv eingesetzt. Inzwischen schützt das Plugin sämtliche Mandanten- und Magazinprojekte unserer WordPress-Multisite-U
xboxdev.com/real-cookie-banner
#Review #ContentBlocker #CookieConsent #DSGVO #Einwilligungshistorie #GeoRestriction #Multisite #PluginReview #RealCookieBanner #ServiceScanner #WordPress

2025-06-23

D.LIVE is Düsseldorf’s premier entertainment venue operator. It needed a #CMS that enabled them to manage content for each through one easy to use backend.

Discover how they worked with netigo to make the most out of TYPO3’s multisite features. Case study 👉 t3.ms/dlive

#multisite #typo3 #multibrand

Plone DEplonede
2025-06-12
Timo Stollenwerk in seinem Vortrag
Plone DEplonede
2025-05-27

Viele Sites, keine Kopfschmerzen – Multi-Site mit Plone!

Timo Stollenwerk zeigt, wie DLR, FZJ & Co. mit Plone 6 & Volto hunderte Webseiten verwalten – skalierbar, wartungsarm, barrierefrei. Ein Muss für Web-Architekten und CMS-Admins!

tagung.plone.de/2025/nachricht

Talk Infos und Foto Timo Stollenwerk
2025-05-15

Строим VXLAN/EVPN на несколько ЦОД

Что делать и куда бежать, если тебе нужно построить сеть на несколько ЦОД, с L2 связностью между площадками, отказоустойчивостью и масштабированием. В этой статье предлагаю рассмотреть некоторые из возможных подходов к организации больших сетей с использованием VXLAN/EVPN.

habr.com/ru/articles/795113/

#сеть #dci #vxlan_evpn #cisco #multisite #bgp #сетевые_технологии #сетевая_инфраструктура #сетевое_оборудование

visionbitesvisionbites
2025-04-02

Neue -Website für die C.F. Maier Unternehmensgruppe! 🌐🚀
Ein für drei starke Marken: Der neue Webauftritt vereint modernes Design, effiziente Verwaltung & Markenvielfalt dank zentraler TYPO3-Multi-Installation.

⏩️ Mehr über das Projekt erfahren: visionbites.de/blog/typo3-webs

2025-04-01

Looking to scale your WordPress site across regions or brands? 💡
Join Syde CIO Robert Windisch at the Atarim Web Agency Summit for a free session on:
“Multisite – The Hidden Champion of Large WordPress Sites” 🚀
📅 April 10, 2025 | 🕑 2:00 PM EST (Virtual)

He’ll bust myths and share real-world enterprise use cases. Perfect for agencies and complex setups!

Robert Windisch, CIO at Syde, wearing a green shirt and a straw hat decorated with WordPress pins, smiling while looking down. On the right side, a green overlay displays event details for the Atarim Web Agency Summit on April 10, 2025, at 2:00 PM EST. The talk title reads: “Multisite – The Hidden Champion of Large WordPress Sites.”
2025-03-27

Das ActivityPub-Plugin für WordPress erfordert, dass bestimmte URLs funktionieren. Das trifft insbesondere auf Multisite-Instanzen mit Unterverzeichnissen zu. Erfahre, wie du deinen nginx konfigurieren musst, damit es funktioniert.

epiph.yt/blog/2025/activitypub

#ActivityPub #Multisite #nginx #Webfinger #WordPress

2025-03-27

Running the ActivityPub plugin for WordPress requires particular URLs to be working as expected. This is even more true for a multisite instance in a sub-directory. Learn how to configure your nginx to get it working.

epiph.yt/en/blog/2025/activity

#ActivityPub #Multisite #nginx #Webfinger #WordPress

Jos Klever Web SupportJosKleverWebSupport@toot.re
2025-03-24

Why does #WordPress #multisite send a plain text email to new users with their password instead of a password reset link so they can create their own password? 🤔

2025-03-20

**WordPress, but serving multiple sites/subdomains?**

Read it on my blog, it has a nicer image/text layout.

Besides my technical blog (blog.rozman.info), I wanted to transfer my other writings from Blogger to my WordPress blog. But those writings are stories in slovenian language. I didn’t want to mix it in the same blog. I wanted to have my stories on a separate subdomain (zgodbe.rozman.info).

So I played with it for 2 hours, googled, failed, repeated and now it works. Here’s the summary of steps:

1. DNS

  1. I updated my DNS records. I added A record zgodbe.rozman.info to point to the IP of my router.

2. Reverse proxy

I updated my reverse proxy (nginx) settings:

  1. In /sites-available directory: I copied (reused) the existing blog vhosts file to new one (zgodbe.rozman….)
  2. I edited it and changed all blog.rozman.info to zgodbe.rozman.info

3. In /sites-enabled I created new symlink to the file above

ln -s /etc/nginx/sites-available/zgodbe.rozman.info.vhost /etc/nginx/sites-enabled/zgodbe.rozman.info.vhost

4. Asked for a new Letsencrypt certificate:

certbot --nginx -d zgodbe.rozman.info 

3. Activate multisite setup in WP

  1. disable all plugins
  2. wp-config.php:
define('WP_ALLOW_MULTISITE', true); //first thing to add, then 'multi-site menu appear in WP'

Then, WP Multisite menu appears in WP. When activating install of multi-site, it creates some lines that I added to wp-config.php and .htaccess

4. Editing wp-config.php and .htaccess

I copied the configuration code WP showed in previous step to:

wp-config.php

define( 'MULTISITE', true );define( 'SUBDOMAIN_INSTALL', true );define( 'DOMAIN_CURRENT_SITE', 'blog.rozman.info' );define( 'PATH_CURRENT_SITE', '/' );define( 'SITE_ID_CURRENT_SITE', 1 );define( 'BLOG_ID_CURRENT_SITE', 1 );

… and .htaccess:

RewriteEngine OnRewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]RewriteBase /RewriteRule ^index\.php$ - [L]# add a trailing slash to /wp-adminRewriteRule ^wp-admin$ wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]RewriteCond %{REQUEST_FILENAME} -dRewriteRule ^ - [L]RewriteRule ^(wp-(content|admin|includes).*) $1 [L]

Welp, the old blog site is broken!

After these changes, my blog didn’t work anymore. Layout was off, css obviously didn’t load, images were missing and I couldn’t login because of broken redirects.

So I did some dark magic to the database (I didn’t make this up, I found hints in wp-config.php file that pointed to https://www.turnkeylinux.org/docs/wordpress/multisite

So I did:

mysql --defaults-extra-file=/etc/mysql/debian.cnf <<EOFUSE wordpress;UPDATE wp_options SET option_value='https://blog.rozman.info' WHERE option_name='home';UPDATE wp_options SET option_value='https://blog.rozman.info' WHERE option_name='siteurl';EOF

This fixed paths to my media (images) and the site wasn’t broken anymore.

Creating new site

Finally, I can create new site (Network admin/sites/add new site). It allowed me to add site as zgodbe.blog.rozman.info. I thought this is a fixed sub-sub domain and I didn’t want to create it at first. Then I created it and edited the name of the new subdomain to zgodbe.rozman.info

Can’t login to new site!

Yeah, the new site worked, but when I wanted to log-in, I couldn’t (error: please allow cookies something…)

wp-config.php

define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST']);

Great, login to the new WP site works!

I can’t upload bigger images!

I also noticed I can not upload bigger images to my blog posts so I increased upload sizes (in wp-config.php):

//filesizesdefine('WP_MEMORY_LIMIT', '256M');define('UPLOAD_MAX_FILESIZE', '100M');define('POST_MAX_SIZE', '100M');

I also increased post size in my reverse proxy (nginx.conf):

http {...client_max_body_size 200M;...

End result

Now my WP can handle multiple sites. Users are shared among them, but plugins are not. I have to reinstall plugins to the new site. I found out I don’t need to reinstall plugin, just click ‘network activate’ for every installed plugin.

I’m quite satisfied it works because I avoided reconfiguration of WP for several months.

Tags: #homelab #selfhosting #wordpress #multisite

https://blog.rozman.info/wordpress-but-serving-multiple-sites-subdomains/

#homelab #multisite #selfhosting #WordPress

2025-03-04

TIL: get_template_directory_uri() ignores switch_to_blog() in a multisite completely, since it relies on WP_CONTENT_URL, which is defined before the blog is switched, and thus cannot be redefined with the proper value for the switched site.

#WordPress #Multisite #WebDev #WebDevelopment

2025-02-21

Robert Windisch is taking the stage tomorrow at to share how WordPress Multisite powers high-traffic sites at scale. 🚀 From hosting optimizations to agency workflows, learn how major brands keep their multisite networks running efficiently. 🏆

If you’re building for scale, this session is for you. 📈
See you there! 👀

An image for a WordCamp Asia 2025 session. On the left, Robert Windisch is wearing a straw hat decorated with various pins, glasses, and a bright green 'syde' t-shirt, smiling while looking down. On the right side, event details are displayed: The session, titled 'Multisite: The hidden champion of large WordPress sites – myths and use cases of WordPress for Enterprises,' will be presented by Robert Windisch on February 22, 2025, at 2:00 PM in Meeting Room 1 – Rizal at WordCamp Asia.
2025-02-21

Ready to take your WordPress site global? Let's talk multilingualism, multisite, and high-performance scaling at WordCamp Asia! 🚀 Meet Niklas and discover how MultilingualPress can take your site global. 🌏

Catch him at , drop a comment, or reach out at products@syde.com to start the conversation! 💬

Niklas at WordCamp Asia 2025. He is wearing a bright green 'syde' t-shirt and a conference badge with his name. He has glasses, a beard, and is smiling while standing in a busy event hall with other attendees in the background.
2025-02-13

Struggling to manage multiple websites?

A multisite CMS like TYPO3 can simplify things and boost your digital footprint.

Find out more at buff.ly/4gDDbww

#typo3 #multisitecms #multisite #digitalbranding

2025-01-26

Mä törmäsin taas outoon mustaan aukkoon sovellusmarkkinoilla. #Wordpress on käytetyin CMS ja #multisite on ollut sen ominaisuus todella kauan. Mut Lisäosa-hakemistossa ei ole yhtäkään lisäosaa jaetun mediakirjaston luomiseen multisiteen.

WBCOM DESIGNSwbcomdesigns@me.dm
2025-01-09

🎉 Another ⭐⭐⭐⭐⭐ from our amazing community!
S F from Canada is loving our Multisite Theme & Plugin setup! 💻✨ Our Multisite Theme & Plugin is hitting the mark, and our support team is crushing it with setup help. 🎯💪
Here's to more wins together! 🥳🎉

Read Out: trustpilot.com/reviews/677e7b2

#teamwin #thankyou #wordpress #community #multisite #webdesign #happycustomers #support #plugins #themes #canada #appreciation #reviews #feedback #wbcomdesigns

OrbitwebtechiCreatewebtech
2024-12-13

Managing multiple websites for your brand? Discover the power of WordPress Multisite a game-changing solution that lets you control all your websites from a single dashboard. Perfect for businesses with multiple brands, regions, or franchises, it's efficient, scalable, and user-friendly!

Visit fror more: orbitwebtech.com/wordpress-mul

Hire Wordpress developer in USA
2024-09-13

Für die neue Marke Linexo haben wir gemeinsam mit Wertgarantie ein flexibles Drupal-Multisite-Setup entwickelt. Es vereint Skalierbarkeit, Mehrsprachigkeit und eine zentrale Verwaltung mehrerer Websites – ideal für internationale Expansion. Erfahre mehr über das Projekt: erdfisch.de/blog/drupal-multis

#Drupal #Multisite #Webentwicklung

Tablet-Bildschirm mit der Website der Marke Linexo, die eine Fahrradversicherung bewirbt. Der Text „Du fährst. linexo regelt.“ steht prominent auf lila Hintergrund. Rechts sieht man ein Bild einer Familie mit einem Lastenfahrrad. Ein Button lädt zur Tarifberechnung ein.

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst