I have forgotten my wordpress website password. I am resetting password following https://codex.wordpress.org/Resetting_Your_Password. I am able to change user_pass in phpMyadmin but when i enter username and password on wp-admin url, it gives ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress.
and in phpMyadmin the user_pass is changed.
Asked
Active
Viewed 220 times
0

Ammar Hayder Khan
- 1,287
- 4
- 22
- 49
-
1So did you disable your cookies? Can you confirm if they're being set or not? – Mike Jan 19 '17 at 03:40
-
it's enabled. i have checked. – Ammar Hayder Khan Jan 19 '17 at 04:52
-
Well WP says cookies are NOT enabled, so I'd say that's the most likely thing going wrong. Try it with another browser and see if it's the same. – Mike Jan 19 '17 at 19:38
1 Answers
0
define('ADMIN_COOKIE_PATH', '/');
define('COOKIE_DOMAIN', '');
define('COOKIEPATH', '');
define('SITECOOKIEPATH', '');
Would you please add above things in wp-config.php
file?

Purvik Dhorajiya
- 4,662
- 3
- 34
- 43