TomWeissert
Forum Replies Created
-
Forum: Networking WordPress
In reply to: multisite install re-login loopI’m not sure I understand. the root directory of the domain forkingpaths.net is called /forkingpaths/
The WP3 files are installed in a subdirectory of this root folder called /blogs/Thus the address of the blog is forkingpaths.net/blogs/
and before I make the config change, all is well.What should I do?
thanks
tomForum: Networking WordPress
In reply to: multisite install re-login loopHi, I have a similar problem (looping login after enabling multisite). I think I’m getting close to the problem. Looking at the cookies that are generated, the path included with the login cookie after I enable multisite is different from the one before I enable, so I think the login is working but it is not able to read back the login cookie.
I’m on a windows server with IIS. Here is are the lines I add to my config file for the multisite:
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/forkingpaths/blogs/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘forkingpaths.net’ );
define( ‘PATH_CURRENT_SITE’, ‘/forkingpaths/blogs/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );
define( ‘AUTH_SALT’, ‘mbEB5ysi,c?a5]@hcN06pCD|t}vYlE3;s@zG
K|(+0PDz:O5_r>$13sX2oq3n*c’ );
define( ‘SECURE_AUTH_SALT’, ‘=i= XHzEKM.%CNV{2;dy :HQviWC`bxb|*5>PB5~|c.5e9Sg<^5|Jd.1xqR!V5Nt’ );
define( ‘LOGGED_IN_SALT’, ‘G4|9@Eb>EiRJ=VO{XVJ!!dHNbXIf2g;1#s,LRao|9^P79P4<(0>S=.P>rA61u2E)’ );
define( ‘NONCE_SALT’, ‘(wl?$BU%clR<*jlm{;&yvQu|G@H&?,4:B)j[G!GHkv(
Mw)^xi(6^?}8BX0bf&0′ );before these lines are added, the cookie path is /blogs/ but afterwards, it becomes /forkingpaths/blogs/
I tried changing the ‘PATH_CURRENT_SITE’ to /blogs/ but then I get a “can’t connect to the database” error.
If it’ll help I can include the httpd.ini file (equiv of .htaccess)
Thanks,
Tom