I found something that works, but with one problem. I’ve follow this:
https://trickspanda.com/wordpress-share-users-login/
But i have problem with one of the things that normally makes login on both sites.
define( ‘COOKIE_DOMAIN’, ‘yourwebsite.com’ );
define( ‘COOKIEHASH’, md5( ‘https://yourwebsite.com’ ) );
Once i add it, i cannot login into my sites. If i remove it, everything it’s ok.
My site url now is https://otaku.bg/otakubg/
So basicaly the code goes as this:
define( ‘COOKIE_DOMAIN’, ‘otaku.bg/otakubg/’ );
define( ‘COOKIEHASH’, md5( ‘https://otaku.bg/otakubg/’ ) );
I’m doing anything wrong or?