• Hi, I’m stuck with multisite. Did everything according to the guide, created three different language sites in “Network Admin”.

    But what then? I cannot even access Dashboard of the newly created sites – there is IIS error: HTTP Error 404.0 – Not Found.

    Please advise…

    If I understand correctly, I should be fine with one WordPress installation and I do not have to add/copy/move any files to the other language sites…?

    https://wordpress.org/plugins/multisite-language-switcher/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Dennis Ploetner

    (@realloc)

    Did you update also the web.config?

    Thread Starter milhol

    (@milhol)

    Yes, I did. According to Network Setup. This is it:

    <?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-]+/)?wp-admin$” ignoreCase=”false” />
    <action type=”Redirect” url=”{R:1}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=”^([_0-9a-zA-Z-]+/)?(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-]+/)?([_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>

    Plugin Author Dennis Ploetner

    (@realloc)

    What type of Multisite did you choose? Subdomain or subdirectory?

    Thread Starter milhol

    (@milhol)

    I chose subdirectory…

    Plugin Author Dennis Ploetner

    (@realloc)

    This should work out of the box … there are just some lines to add to wp-config.php and in your case to the web.config, a logout and login and done. Please check carefully if you followed all the steps.

    Thread Starter milhol

    (@milhol)

    I checked carefully and followed all steps…

    Still not working.

    Please see the error message: http://i62.tinypic.com/2njypdt.jpg

    Plugin Author Dennis Ploetner

    (@realloc)

    Sorry but you should ask the support of your hosting. I can just guess what’s going on there and this will not very helpful. A working multisite is a must for the Multisite Language Switcher…

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Stuck with multisite’ is closed to new replies.