jmd526
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: Woocommerce] User login page issueI have the same problem! WordPress 4.6.1 and Woocommerce 2.6.7.
I have seen a few others struggling with this as well. The test cookie is set in wp-login/php (see below) and it seems to set the cookie twice. The second time only if COOKIEPATH and SITECOOKIEPATH are different. I wonder if there is only ONE cookie unset/delete at logout (so that a test cookie is left if COOKIEPATH != SITECOOKIEPATH). In other words: is this behavior intended for some reason?
Forum: Fixing WordPress
In reply to: test cookie prevents loginThe cookie is set in wp-login with this code:
//Set a cookie now to see if they are supported by the browser.
setcookie(TEST_COOKIE, ‘WP Cookie check’, 0, COOKIEPATH, COOKIE_DOMAIN);
if ( SITECOOKIEPATH != COOKIEPATH )
setcookie(TEST_COOKIE, ‘WP Cookie check’, 0, SITECOOKIEPATH, COOKIE_DOMAIN);It seems that a second cookie is set if SITECOOKIEPATH is not the same as COOKIEPATH. Maybe there is only one cookie unset/delete later so that the PATH mismatch is what becomes a blocker to login?
Forum: Fixing WordPress
In reply to: can't login to admin panel after enabling httpOnly;sercure in apacheI have a similar problem. I can’t login because of the test cookie. I’m using https.
Forum: Fixing WordPress
In reply to: test cookie prevents loginOh yeah…. does anyone know how I can fix this?
Or point me in the right direction?
Forum: Plugins
In reply to: [WooCommerce] My Account/Checkout Page “Can’t Be Reached”I am having the same problem.