Posts

Showing posts with the label wordpress admin log in

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...

How to solve Plugin Interference with WordPress Login?

Image
  It’s possible for a plugin to interfere with the login process. A plugin may not have been updated properly, or there could be a conflict  between two or more of your plugins. Solution to fix Plugin Interference with WordPress Login : The first thing you need to do is confirm that the issue is being caused by a plugin. You can do this by deactivating all of your plugins, or by temporarily renaming the plugins folder. If you have access to your admin panel, simply go to the  Plugins  menu and deactivate all plugins. Make sure to back up your site first. Select all of the plugins, go to  Bulk Actions  and choose  Deactivate . If you don’t have access to the admin panel, you can rename the plugins folder in your WordPress  root  directory. Use a File Transfer Protocol (FTP) client, locate the  wp-content/plugins  folder, and rename it temporarily: After you rename that folder, WordPress won’t be able to...