anthon
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Yeah they did.
Well if you think there’s no logical reason for it – i’ll go back to basics and try again!
Forum: Networking WordPress
In reply to: network admin getting redirect loopI’ve got this same issue. I can access the site (although comments won’t load), get to the login page. However, if I try to login, it just loops straight back to the login box again.
I’m running WordPress 3.1 Network on IIS7, SQL Server 2008 w/ sub-domains.
I have enabled network, and added the following to:
web.config:
<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="^files/(.+)" ignoreCase="false" /> <action type="Rewrite" url="wp-includes/ms-files.php?file={R:0}" appendQueryString="false" /> </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="." ignoreCase="false" /> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite>
wp-config:
define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'svr-web' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
Any ideas?
Viewing 2 replies - 1 through 2 (of 2 total)