How to fix cookies blocked error on WordPress admin dashboard?
If you have a caching plugin installed on your WordPress website, chances are that you will experience a “Cookies Blocked” error message while trying to log into the WordPress admin dashboard at some point in your life. I’ve seen this since we begin implementing caching and security plugins more heavily on our websites. Honestly, I haven’t narrowed the problem down to the point where I know exactly which plugin or setting is causing the issue. I have, however, found two quick methods for how to fix a “cookies blocked” error on WordPress Login dashboard. Cookies Blocked Error “Permanent” Fix Now, the first solution doesn’t remove the error. However, this solution will: Access your Functions.php file (use an FTP tool such as Filezilla or CyberDuck, or go through the file manager in your hosting cPanel) Add the following code to the bottom of the functions.php file: setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN); if ( SITECOOKIEPATH != COOKIEPATH ) setc...