WordPress.org Forums » All Posts https://wordpress.org/support/forum/multisite/feed/ Wed, 14 May 2025 21:03:57 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://wordpress.org/support/topic/single-login-for-multisite/#post-18466054 <![CDATA[Single Login for Multisite?]]> https://wordpress.org/support/topic/single-login-for-multisite/#post-18466054 Wed, 14 May 2025 17:57:21 +0000 Q: When I am logged in to my main (networked) WP Multisite, shouldn’t I be able to click “My Sites” >> the subdomain site >> dashboard >> and be taken there (and not the log in screen)?

Two Techs at my web host tell me yes, and one is telling me that is not possible without a plugin like WordPress Multisite User Sync/Unsync. I could have sworn I did this 2 months ago natively (without plugins).

Thank you for your consideration

]]>
https://wordpress.org/support/topic/make-view-details-link-available-for-admin-users-on-multisite/#post-18462233 <![CDATA[Make “View details” link available for admin users on Multisite]]> https://wordpress.org/support/topic/make-view-details-link-available-for-admin-users-on-multisite/#post-18462233 Mon, 12 May 2025 20:48:34 +0000 bügelfrei On multisites regular admins are shown the ‘Visit plugin site’ link in their Plugins admin instead of the ‘View details’ link. As a super admin, it doesn’t make sense to me to make them leave WP to decide if they want to activate a plugin that I have made available to them.

Unless I’m overlooking something, it seems that WP_Plugins_List_Table::single_row() could have the capability condition here

// Details link using API info, if available.
if ( isset( $plugin_data['slug'] ) && current_user_can( 'install_plugins' ) ) {

modified to activate_plugins.

Thanks!

]]>
https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18461756 <![CDATA[Reply To: Multisite network works except for one subsite]]> https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18461756 Mon, 12 May 2025 14:55:15 +0000 joesighting Thanks for the responses. I did have a CNAME record in the Godaddy DNS zone as well as adding the domain in cPanel. I let that sit for a couple of days and no change. I removed the CNAME record thinking maybe the 2 were conflicting, but no change. Now I’ve changed it to an A record to see if that makes a difference. If that doesn’t work, should I try removing the domain from cPanel and trying with just the host’s DNS zones? This is beyond frustrating. Been at this a week now as I let each change sit for at least a day to see if it propagates.

]]>
https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18460693 <![CDATA[Reply To: Multisite network works except for one subsite]]> https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18460693 Mon, 12 May 2025 04:50:31 +0000 Thomas John It sounds like you’re really close — the issue you’re facing with forum.carvebot.com is likely DNS-related. Based on the AutoSSL error and the fact that the domain doesn’t resolve, it seems that the subdomain forum.carvebot.com isn’t properly set up in your DNS settings yet.

Even though support.carvebot.com worked without a CNAME, it’s possible that your hosting provider (or GoDaddy) automatically created an A or CNAME record for it when it was added. You’ll want to double-check in your GoDaddy DNS zone that there is an A record or CNAME for forum.carvebot.com. If not:

  • Try creating an A record for forum.carvebot.com pointing to your server’s IP address (same as your main domain).
  • Wait for DNS propagation (can take up to a few hours).
  • Then rerun AutoSSL in cPanel to issue the certificate.

Also, make sure that the subdomain is added as an alias or addon domain in cPanel under the correct root, though it sounds like you already did that.

]]>
https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18460419 <![CDATA[Reply To: Multisite network works except for one subsite]]> https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18460419 Sun, 11 May 2025 18:31:47 +0000 George Appiah It’s your DNS.

You have CNAME’d support.carvebot.com to carvebot.com, which is why it works.

But there’s no such CNAME or A/AAAA record for forum.carvebot.com, so this subdomain does not resolve at all.

I’m not familiar with your provider’s DNS tools, but you’ll know you’re ready when you can get forum.carvebot.com to also return carvebot.com when you do a CNAME lookup here: https://dnschecker.org

]]>
https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18460397 <![CDATA[Multisite network works except for one subsite]]> https://wordpress.org/support/topic/multisite-network-works-except-for-one-subsite/#post-18460397 Sun, 11 May 2025 18:02:18 +0000 joesighting I’ve created a multisite network with 3 subsites.
Main site:
https://carvebot.com
Subsites:
https://support.carvebot.com
https://carvedepot.com
https://forum.carvebot.com

The problem I’m having is the forum site will not work and I cannot figure out why.
I’ve added it to the domains in Cpanel and it points to the same public_html root as the others, but cannot access the dashboard or even see the site as “unsecured”. AutoSSL reports an error (DNS DCV: No local authority: “forum.carvebot.com”; HTTP DCV: “forum.carvebot.com” does not resolve to any IP addresses on the internet.)

I tried adding a CNAME record in Godaddy’s DNS settings but that didn’t work either. Plus, I didn’t have to do that for the support subdomain site.

I’m at a total loss at this point. As far as I can tell I followed the exact same steps as the other 2 subsites which work perfectly.

]]>
https://wordpress.org/support/topic/wordpress-multisite-add-childsite_2-to-email-addresses/#post-18460264 <![CDATA[Reply To: WordPress Multisite add childsite_2+ to email addresses]]> https://wordpress.org/support/topic/wordpress-multisite-add-childsite_2-to-email-addresses/#post-18460264 Sun, 11 May 2025 15:17:12 +0000 isabelthomas We had the same issue on our WordPress Multisite network — emails were being sent with a strange prefix like childsite_2+user@example.com, which caused them to be rejected or go missing.

This usually happens because WordPress (or the underlying server/email configuration) tries to distinguish emails from different subsites by prepending the site ID using plus addressing. However, many mail providers (like Hotmail, Outlook, and even some corporate servers) don’t accept these modified addresses. ✅ Here’s how we fixed it:

  1. Override the default sender address using a filter – Add this to your theme’s functions.php file or a custom plugin:

phpCopy

Edit

add_filter('wp_mail_from', 'fix_wp_mail_from_address'); function fix_wp_mail_from_address($email) { return 'no-reply@yourdomain.com'; // Use a valid address on your domain } add_filter('wp_mail_from_name', 'fix_wp_mail_from_name'); function fix_wp_mail_from_name($name) { return 'Your Site Name'; // Customize this }

  1. Use a proper SMTP plugin – We recommend WP Mail SMTP or Post SMTP. Set it up to send emails from a real, verified email address like no-reply@yourdomain.com. This avoids weird formatting and improves deliverability.

To read more about this, make sure to visit this website.

]]>
https://wordpress.org/support/topic/after-creating-a-subsite-they-all-show-this-site-cant-be-reached-errors/#post-18458824 <![CDATA[Reply To: After creating a subsite they all show This site can’t be reached errors]]> https://wordpress.org/support/topic/after-creating-a-subsite-they-all-show-this-site-cant-be-reached-errors/#post-18458824 Fri, 09 May 2025 16:54:40 +0000 Thomas John Good Your Problem is Solved!

]]>
https://wordpress.org/support/topic/multisite-specific-login-issues-with-wp-6-8-hashing/#post-18458659 <![CDATA[Reply To: Multisite specific login issues with WP 6.8 password hashing]]> https://wordpress.org/support/topic/multisite-specific-login-issues-with-wp-6-8-hashing/#post-18458659 Fri, 09 May 2025 14:53:39 +0000 Martin Dukoski I can also confirm I’m experiencing the same issue on a multisite setup running WordPress 6.8.1, PHP 8.3, and Redis object caching.

When I log in to the main site, the password is upgraded as expected. However, logging into a subsite with the same credentials fails with an “invalid password” error. Logging back into the main site still works…

Disabling Redis and clearing all user-related object cache groups did not resolve the issue in my case. The only reliable workaround was reverting to WordPress 6.7.2 and re-setting the user password using an old-style md5 hash — everything then works normally across all subsites.

This seems like a critical issue with how the new password hashing interacts with multisite and object caching. Hoping core addresses it soon.

]]>
https://wordpress.org/support/topic/after-creating-a-subsite-they-all-show-this-site-cant-be-reached-errors/#post-18455191 <![CDATA[Reply To: After creating a subsite they all show This site can’t be reached errors]]> https://wordpress.org/support/topic/after-creating-a-subsite-they-all-show-this-site-cant-be-reached-errors/#post-18455191 Wed, 07 May 2025 17:54:13 +0000 Paal Joachim Romdahl Thank you @gappiah and @isabelthomas for your respons!

I followed the approach which came back to me from the old memory of doing this a few years ago..

Web host cpanel:
Added the (sub) domain. Document root I set to the multisite: public_html.

Web site multisite:
I then went into the subsite multisite panel. Clicked Edit. Went into settings and set the siteurl and home from http to https.

That did it.
Hopefully others whom have forgot the process will come over this thread.

]]>