Can't log on to mapped domain dashboard anymore since 4.1.1 update
-
Since the WordPress 4.1.1 update last night, I cannot log on to a mapped domain admin Dashboard interface anymore. This worked perfectly yesterday, when I set it up in my test environment.
In my test environment, only cookies of my DOMAIN_CURRENT_SITE domain are set, and not for the mapped domain. The WordPress log on page cries:
—
ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.
—right…
I’ve removed and re-added the WordPress MU Domain Mapping plugin (both domain_mapping.php in mu-plugins, and sunrise.php) to no avail.
The hosting is on IIS 8 (which shouldn’t matter), and my web.config has the following contents:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="WordPress Rule 1" stopProcessing="true"> <match url="^index\.php$" ignoreCase="false" /> <action type="None" /> </rule> <rule name="WordPress Rule 2" stopProcessing="true"> <match url="^wp-admin$" ignoreCase="false" /> <action type="Redirect" url="wp-admin/" redirectType="Permanent" /> </rule> <rule name="WordPress Rule 3" stopProcessing="true"> <match url="^" ignoreCase="false" /> <conditions logicalGrouping="MatchAny"> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" /> </conditions> <action type="None" /> </rule> <rule name="WordPress Rule 4" stopProcessing="true"> <match url="^(wp-(content|admin|includes).*)" ignoreCase="false" /> <action type="Rewrite" url="{R:1}" /> </rule> <rule name="WordPress Rule 5" stopProcessing="true"> <match url="^([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" /> <action type="Rewrite" url="{R:2}" /> </rule> <rule name="WordPress Rule 6" stopProcessing="true"> <match url="." ignoreCase="false" /> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
and in my wp-config.php:
define( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', 'internal.site.example.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1); define( 'SUNRISE', 'on' );
Setting it up yesterday, I followed https://ottopress.com/2010/wordpress-3-0-multisite-domain-mapping-tutorial/.
Any idea?
https://www.ads-software.com/plugins/wordpress-mu-domain-mapping/
- The topic ‘Can't log on to mapped domain dashboard anymore since 4.1.1 update’ is closed to new replies.