Impossibile accedere: "ERRORE: i cookie sono bloccati o non sono supportati dal tuo browser. Devi abilitare i cookie per utilizzare WordPress."
-
-
Guardail codice HTML dellapagina di accesso.C'è qualcosaprima della rigainiziale di DOCTYPE?Anche una riga vuota?Se è così,allora hai qualchepezzo di codice che crea l'outputprima che leintestazioni sianofatte,nel qual caso ciògliimpedisce diimpostarei cookie.Look at the login page's HTML source. Is there anything at all before the initial DOCTYPE line? Even a blank line? If so, then you have some piece of code creating output before the headers are made, in which case this prevents it from setting cookies.
- 1
- 2014-10-22
- Otto
-
Ciò è dovuto alfatto che Wordpress applica un controllo $ secure_cookie su un canale crittografatopergli accessi amministrativi.Riconfigurailtuo server webper applicare SSL/TLS.KR.This is due to the fact that Wordpress enforce a $secure_cookie control over an encrpted channel for admin logins. Reconfigure your webserver to enforce SSL/TLS. KR.
-
Se stai utilizzando WordPress MU,l'aggiunta del dominio all'elenco dei dominiin Impostazionipotrebbe risolvereilproblema.If you're using WordPress MU, adding the domain to Domains list in Settings may fix the issue.
- 0
- 2016-12-12
- Mahdi Taghizadeh
-
Questo è ciò che hafunzionatoperme: ho cambiato httpin https (aggiunto 's')e voilà.Nessunproblema coni cookie.This is what worked for me: I changed http to https (added 's') and voila. No more cookie issue.
- 2
- 2017-09-19
- Prisoner 13
-
@MahdiTaghizadeh - Puoi spiegare cosaintendiperfavorein modopiù dettagliato?@MahdiTaghizadeh - Can you explain what you mean please in more detail?
- 0
- 2019-04-04
- Greeso
-
un altroerrore chepuoifare è quando configuri AWS cloudfront,potrestitrascurare leimpostazioniper consentire l'inoltro dei cookie.quando è disabilitato,non saraiin grado di accedereanother mistake that you can make is when setting up AWS cloudfront, you may overlook the settings to let it forward cookies. when its disabled, you won't be able to login
- 0
- 2019-09-12
- Kevin
-
5 risposta
- voti
-
- 2014-10-24
Era Varnish.
Ilnostro host web aveva Varnish configuratoin modo specificoper Drupale stavafiltrandoi cookie che WordPress utilizzapergestiregli accessi.
It was Varnish.
Our web host had Varnish set up in a Drupal-specific manner, and it was filtering out the cookies that WordPress uses to handle logins.
-
Nelmio caso è stato AWS CloudFront abloccarei cookie.In my case it was AWS CloudFront which blocked cookies.
- 1
- 2016-09-08
- Mantas
-
L'ho visto conil sitonon sicurohttp://maperme tuttofunziona quando si usa https://I saw this with the non secure sitehttp:// but for me everything works when using https://
- 0
- 2019-09-27
- CrandellWS
-
- 2016-11-28
Aggiungi la riga sottostante altuo wp-config.phpprima di/* Questo ètutto,smetti dimodificare! ... */
define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST'] ); /* That's all, stop editing! Happy blogging. */
Add below line to your wp-config.php before /* That's all, stop editing!...*/
define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST'] ); /* That's all, stop editing! Happy blogging. */
-
Questa soluzione hafunzionato ancheperme su un'installazionemultisito.Sono riuscito ad accedere al sitoprincipalemanon a quello secondario.This solution also worked for me on a multisite installation. I was able to login to the main site but not to the secondary one.
- 2
- 2018-02-23
- Be.St.
-
@ Be.St.,Prova con `define ('COOKIE_DOMAIN','');`@Be.St., try `define('COOKIE_DOMAIN', '');`
- 0
- 2018-04-18
- Steve
-
Questonon hafunzionatoimmediatamenteperme,ma hafunzionato con un aggiornamento difficile (ctrl +f5in Chrome)This didn't work immediately for me, but did on a hard refresh (ctrl + f5 in chrome)
- 2
- 2019-02-09
- Dave
-
d'accordo con @Dave,hopulitomanualmenteil cookiee poifunzionaagree with @Dave, I manually cleaned cookie and then it works
- 0
- 2020-02-19
- Neekey
-
Nel casoin cui qualcuno stia cercando documentazione ufficiale che lo confermi,può vedere lo stesso consiglioin fondo a https://wordpress.org/support/article/wordpress-multisite-domain-mapping/.In case anyone is looking for official documentation that confirms this, they can see this same advice at the bottom of https://wordpress.org/support/article/wordpress-multisite-domain-mapping/.
- 0
- 2020-03-20
- DuckMaestro
-
- 2015-06-03
Sono stato cercato su Google & amp;provatotuttii modiper sbarazzarsi di questoproblema coni cookie. Finalmente hotrovato due soluzioni chepotrebbero aiutarti.
Soluzione 1:
yoursite/wp-login.php
Commenta le righe 770-773
Codice
if ( isset($_POST['testcookie']) && empty($_COOKIE[TEST_COOKIE]) ) $user = new WP_Error('test_cookie', __("<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress.")); else $user = wp_signon('', $secure_cookie);
Potrebbefunzionareper alcuni siti webe alcuni sitipotrebberomostrare unapagina vuota. Inoltre,questonon è consigliato,poiché questofilepotrebbeessere sovrascritto dopo l'aggiornamento di wordpress,quindiprova una seconda soluzione.
Soluzione 2:
yoursite/wp-content/themes/yourthemeFolder/functions.php
Inserisciil seguente codice.
setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN); if ( SITECOOKIEPATH != COOKIEPATH ) setcookie(TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN);
Anche l'aggiornamento deltuotemapotrebbeperdere questemodifiche,quindiperfavoreinserisci questo codicein un altrofunctions.php,che sitrova sotto la cartella deltemafiglioneltuotema attivo corrente. Spero,questoti aiuterà.
I have been googled & tried all ways to get rid of this cookie issue. Finally i found two solutions, which could help you.
Solution 1:
yoursite/wp-login.php
Comment following lines 770-773
Code
if ( isset($_POST['testcookie']) && empty($_COOKIE[TEST_COOKIE]) ) $user = new WP_Error('test_cookie', __("<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href='http://www.google.com/cookies.html'>enable cookies</a> to use WordPress.")); else $user = wp_signon('', $secure_cookie);
It might work for some websites and some sites may show blank page. Moreover, this is not recommended,as this file may be overridden after wordpress update so try for second solution.
Solution 2:
yoursite/wp-content/themes/yourthemeFolder/functions.php
Place following code.
setcookie(TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN); if ( SITECOOKIEPATH != COOKIEPATH ) setcookie(TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN);
Updating of your theme may also loose these changes so please place this code in another functions.php, which is under your child-theme folder in your current active theme. Hope, this will help you.
-
Queste sono davvero soluzioni.Più come un work around,non l'idealeper usarloin modopermanente ...These are really solutions. More like work arounds, not ideal to use this permanently...
- 2
- 2016-09-21
- Jake
-
-1per "Soluzione" 1perché lamodifica del corenon è MAI l'azione corretta.2funzioneràmanonidentificailproblema.-1 for "Solution" 1 because editing the core is NEVER the correct action. 2 will work but it does not identify the issue.
- 0
- 2018-04-25
- Jeremy
-
- 2018-07-06
Ho avuto anche questoproblema di recente,si è scoperto che sebbeneilnome di dominiofossepuntato versoil sito Web,il sitomultiplo di wordpressnon aveva un recordnel databasepermappareilnome di dominio alblog corretto,quindi quando wordpresseracercando diimpostarei cookie,stavaimpostandoil cookieperil sottodominioinvece del dominiomappato.
I also had this issue recently, it turned out that although the domain name was pointed towards the website, the wordpress multisite didn't have a record in the database to map the domain name to the correct blog, so when wordpress was trying to set the cookies, it was setting the cookie for the subdomain instead of the mapped domain.
-
Questo hafunzionatoperme.Sto utilizzando https://wordpress.org/plugins/wordpress-mu-domain-mapping/per lamappatura del dominioe non appena ho aggiuntoil record dimappatura,ho smesso di ricevereilmessaggio "ERRORE:i cookie sonobloccati onon sono supportati daltuoerrore delbrowser ".This worked for me. I'm using https://wordpress.org/plugins/wordpress-mu-domain-mapping/ for domain mapping and as soon as I added the mapping record, I stopped getting the "ERROR: Cookies are blocked or not supported by your browser" error.
- 0
- 2019-02-13
- lee_mcmullen
-
- 2018-04-08
Hoimplementato la soluzionefornita da wpdevramkie honotato chepotrebbeemergereil seguenteproblema:
"Avviso: costante COOKIE_DOMAINgià definitain/wp-config.php alla riga 102"
Per risolvere questoproblema,commentail codice seguentenelfile wp-includes/default-contants.php
if ( !defined('COOKIE_DOMAIN') ) define('COOKIE_DOMAIN', false);
I implemented the solution given by wpdevramki and noticed that following issue might surface:
"Notice: Constant COOKIE_DOMAIN already defined in /wp-config.php on line 102"
To resolve this, please comment out the following code in the wp-includes/default-contants.php
if ( !defined('COOKIE_DOMAIN') ) define('COOKIE_DOMAIN', false);
Dopo uno spostamento del server,non riesco ad accedere almio sito. Ottengoilmessaggio "ERRORE:i cookie sonobloccati onon sono supportati daltuobrowser. Devi abilitarei cookieper utilizzare WordPress."errore quandoprovo ainviareilmodulo di accesso.
Sono certo cheilmiobrowser supportii cookiee chenon sianobloccati.
Ho studiato afondo questo aspettoe hoprovatotuttii suggerimenti che hotrovato:
imposta ADMIN_COOKIE_PATH,COOKIE_DOMAIN,COOKIEPATHe SITECOOKIEPATHin wp-config.php:
haprovato questo hack a wp-login.php: https://wordpress.org/support/topic/cookies-are-blocked-or-not-supported-by-your-browser-1#post-5026171
Posso accedere al sito sullamiainstallazione localee posso accedere al sito sulnostro server di sviluppo. Qualcheidea su cosapotrebbe causare questo?