Multiuser not creating blogs
-
I’ve successfully installed the multiuser version of WordPress on my shared IIS server using subdirectories. When I try to create a blog in the network panel, the information goes into the database fine, but no blog is created. (No folders, etc. show up on the server.) When I try to access the blog, there’s no page available.
I’ve tried creating a web.config file with the below info that I found on another forum without success. Permissions are set to read/write in the proper folders and I have created a blogs.dir folder.
If anyone can help me with this, I’d sure appreciate it.
Steve
<?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=”^([_0-9a-zA-Z-]+/)?files/(.+)” ignoreCase=”false” />
<action type=”Rewrite” url=”wp-includes/ms-files.php?file={R:2}” appendQueryString=”false” />
</rule>
<rule name=”WordPress Rule 3″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?wp-admin$” ignoreCase=”false” />
<action type=”Redirect” url=”{R:1}wp-admin/” redirectType=”Permanent” />
</rule>
<rule name=”WordPress Rule 4″ 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 5″ stopProcessing=”true”>
<match url=”^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*)” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:1}” />
</rule>
<rule name=”WordPress Rule 6″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:2}” />
</rule>
<rule name=”WordPress Rule 7″ stopProcessing=”true”>
<match url=”.” ignoreCase=”false” />
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
<defaultDocument>
<files>
<clear />
<add value=”index.php” />
<add value=”index.html” />
<add value=”index.htm” />
</files>
</defaultDocument>
</system.webServer>
</configuration>
- The topic ‘Multiuser not creating blogs’ is closed to new replies.