Viewing 6 replies - 1 through 6 (of 6 total)
  • Buddy press i think does this. Also most membership blugins geared toward multiste will alow this.

    Hey there. did you manage to find a solution for that ?

    It seems that multi network separated the logins. I’m looking for a while a solution for when a user login to Network1 he will not have to login again if he visit Network2.

    Right now user need to login to each network he visiting using the same credential

    Found a solution !!!
    adding this the my config.php
    // Cookies
    define( ‘COOKIEHASH’, md5( ‘mydomain.org’ ) );
    define( ‘COOKIE_DOMAIN’, ‘mydomain.org’ );
    define( ‘ADMIN_COOKIE_PATH’, ‘/’ );
    define( ‘COOKIEPATH’, ‘/’ );
    define( ‘SITECOOKIEPATH’, ‘/’ );
    define( ‘TEST_COOKIE’, ‘thing_test_cookie’ );
    define( ‘AUTH_COOKIE’, ‘thing_’ . COOKIEHASH );
    define( ‘USER_COOKIE’, ‘thing_user_’ . COOKIEHASH );
    define( ‘PASS_COOKIE’, ‘thing_pass_’ . COOKIEHASH );
    define( ‘SECURE_AUTH_COOKIE’, ‘thing_sec_’ . COOKIEHASH );
    define( ‘LOGGED_IN_COOKIE’, ‘thing_logged_in’ . COOKIEHASH );

    orantene,

    Does this solution work for example:

    mainnetwork.com
    subdomain.mainnetwork.com

    and then

    othernetwork.com?

    That would be rad!

    If they all part of your database and a user using the same signup/activation key for all the sites.. Basically if user can log in with the same credential to all of them it supposed to work.

    I have a multi network with many mapped domains. The otherdomain.com problem. The above code solution was not working for me… Still looking into a solution for this.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Unified login for all sites’ is closed to new replies.