willow878
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I got: ERROR: Cookies are blocked or not supported by your browser.I have the same issue. So far, no solution: https://wordpress.org/support/topic/error-cookies-are-blocked-or-not-supported-1?replies=10
Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked or not supported[ ! ] Problem still exists.
Can anyone else suggest what could fix this?
Thanks in advance for your help!
Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked or not supported( Also to note, I tried adding { } to your if statement, and this also did not help )
setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN); if ( SITECOOKIEPATH != COOKIEPATH ) { setcookie(TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN); }Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked or not supportedExcellent. Thanks for the tip. I added your code to the bottom of the functions.php inside the TwentySixteen theme folder.
Sadly, the /wp-login.php page is still creating the cookies error.
It’s strange that this error should be present with a fresh copy of WordPress 4.4.2. Could this possibly be a bug in the recent version of WordPress?
Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked or not supportedThanks for your suggestion! I will try adding that code to functions.php and see if it helps.
Now since I have no set anything up yet (not yet been able to log in and all), which theme is activated by default?
Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked or not supportedI found this in the wp-login.php file. Does it relate?
setcookie( TEST_COOKIE, ‘WP Cookie check’, 0, COOKIEPATH, COOKIE_DOMAIN, $secure );
if ( SITECOOKIEPATH != COOKIEPATH )
setcookie( TEST_COOKIE, ‘WP Cookie check’, 0, SITECOOKIEPATH, COOKIE_DOMAIN, $secure );——-
Update: I commented out that code just to check. Did not fix the issue.Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked or not supportedHi MagikCommerce,
Thanks for your reply. I have reviewed the three threads you linked to.
Seems one solution talked about is removing the:
<input type=”hidden” name=”testcookie” value=”1″ />One person mentions they are in two files:
sidebar.php
bp-core-widgets.phpI have not been able to find either of these two files. Any idea where they are located?