Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    I am not sure if I understand you question correctly. We installed the plugin with below modification so users can login from root site to their own subsite(s):

    on .\wp\wp-content\plugins\wordpress-social-login\includes\services\wsl.authentication.php before the last line of function wsl_process_login_end():
    $blog = get_active_blog_for_user($user_id);
    $redirect_to = $blog->path . “wp-admin”;

    Hope this helps or ignore it.

    @miled Just want to say thank you and how great product you have made!
    All the best!

    I just figured it out.

    I have created users by populating database directly which I missed adding the following to table wp_usermeta for each new user:
    meta_key meta_value
    rich_editing true

    The meta_value flag can be turned on/off at Users ->
    Visual Editor Disable the visual editor when writing

    Hope this might help others.

    Roger

    same problem here for site administrator but not super admin. We have WordPress 4.4.2

    Thread Starter yanggz

    (@yanggz)

    Found an answer at http://wordpress.stackexchange.com/questions/149797/web-config-breaks-the-themes-for-sub-directory-multisite

    and the following web.config made my multisites working properly:

    <?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>

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