I've tracked it down to the cookie information in mt.js that gets generated when I publish the blog.
Lines 2-5 of a published mt.js
CODE
var mtCookieName = "mt_blog2_user";
var mtCookieDomain = ".";
var mtCookiePath = "";
var mtCookieTimeout = 14400;
var mtCookieDomain = ".";
var mtCookiePath = "";
var mtCookieTimeout = 14400;
To get it working, I have to edit it so that it looks like
CODE
var mtCookieName = "mt_blog2_user";
var mtCookieDomain = ".www.mygrotto.org";
var mtCookiePath = "/";
var mtCookieTimeout = 14400;
var mtCookieDomain = ".www.mygrotto.org";
var mtCookiePath = "/";
var mtCookieTimeout = 14400;
The problem with this is that each time I republish the site, the mt.js gets reset.
I have another MT4 install where the blog is not at the root level but is in a subfolder and "Remember Me" works as it should.
Ideas?
