Disabilita SSL / HTTPS per wordpress
-
-
Dovresti usare HTTPS,nonfarlo èinsicuroe ha scarsepenalità SEOe velocità dellapagina.Inoltre,puoipubblicare latua risposta come risposta?You should use HTTPS, not doing so is insecure, and has poor SEO and page speed penalties. Also, can you post your answer as an answer?
- 0
- 2020-08-28
- Tom J Nowell
-
8 risposta
- voti
-
- 2017-02-14
Controllailtuofile
wp-config.php
per righe come:define( 'WP_SITEURL', 'https://example.com' ); define( 'WP_HOME', 'https://example.com' );
Controlla anche latabella
{prefix}_options
deltuo database:SELECT * FROM wp_options WHERE option_name='siteurl' OR option_name='home';
... supponendo cheilprefisso del database sia
wp_
.Check your
wp-config.php
file for lines like:define( 'WP_SITEURL', 'https://example.com' ); define( 'WP_HOME', 'https://example.com' );
Also check your database's
{prefix}_options
table:SELECT * FROM wp_options WHERE option_name='siteurl' OR option_name='home';
...assuming that your database's prefix is
wp_
.-
Non ci sono righe delgenerenelmio wp-config.phpe hogià controllato latabella delle opzionie che dice `http://esempio.com`perentrambiThere are no lines like that in my wp-config.php and I already checked the options table and that says `http://example.com` for both
- 0
- 2017-02-14
- cCe.jbc
-
Danotare,seimposti le costanti,non ènecessario aggiornare le righe delle opzioniper homee siteurl.To note, if you set the constants, you don't need to update the options rows for home and siteurl.
- 2
- 2017-02-14
- Brian Fegter
-
Quelle costanti sono sbagliate.Dovrebbeessere "WP_HOME","WP_SITEURL"Those constants are wrong. Should be 'WP_HOME', 'WP_SITEURL'
- 0
- 2017-02-15
- ngearing
-
Hai ragione,@Nath.Questo è ciò che ottengofacendo questo dallamemoria.Right you are, @Nath. That's what I get for doing this from memory.
- 0
- 2017-02-15
- Pat J
-
- 2017-02-14
Puoimodificareilfile .htaccess:
RewriteEngine On RewriteCond %{HTTPS} on RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
You can modify .htaccess file:
RewriteEngine On RewriteCond %{HTTPS} on RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
-
Questa è stata l'unica soluzione chemi ha aiutato su localhost (xampp).This was the only solution that helped me on localhost (xampp).
- 0
- 2018-09-06
- Henning Fischer
-
- 2017-02-19
Controlla l'URL deltuo sito webimpostato dalleimpostazioni. Questopuòesserefattotramiteil database come Pat Said,ma senon sei così esperto ditecnologiae puoi comunque accedere all'amministratore di WordPress,usalo.
Vai su Impostazioni -> Generalie seleziona
WordPress Address (URL)
eSite Address (URL)
.Dovrebberoiniziare conhttp
invece dihttps
.Please check your website URL set from the settings. This can be done trough the database like Pat Said, but if your not that tech savvy and you can still access the WordPress admin, use that.
Go to Settings -> General and check
WordPress Address (URL)
andSite Address (URL)
. These should start withhttp
instead ofhttps
.-
Ho risoltoilproblema.Mailproblemanonera quello chepensavofosse.Puoi vedere la soluzionenellamia domanda.Penso che questoe le altre risposte qui avrebberofunzionato se questofosseilproblema.Aproposito,non sono riuscito ad accedere all'amministratore (nonera sicuro) quindinonpotevo andare alleimpostazioni.Come ho detto a Pat,hogià controllato comunqueil database.I've solved, the problem. But the problem wasn't what I thought it was. You can see the solution in my question. I think this, and the other answers here would have worked if this was the problem. By the way, I couldn't log into admin (it was insecure) so I couldn't have gone to settings. As I said to Pat, I already checked the database anyway.
- 0
- 2017-02-20
- cCe.jbc
-
- 2019-01-09
Nelmiofile
wp-config.php
ho:define('WP_SITEURL', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com'); define('WP_HOME', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com');
Devitrovare questa stringa:
define('FLYWHEEL_DEFAULT_PROTOCOL', 'https://');
E cambia
https://
inhttp://
In my file
wp-config.php
I have:define('WP_SITEURL', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com'); define('WP_HOME', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com');
You need find this string:
define('FLYWHEEL_DEFAULT_PROTOCOL', 'https://');
And change
https://
tohttp://
-
- 2017-02-14
Seguendo la risposta di Pat.Puoiprovare ad aggiungere queste 2 righe altuofile wp-config.phpper vedere se questo risolve l'errore:
define( 'WP_SITEURL', 'http://example.com' ); define( 'WP_HOME', 'http://example.com' );
Questo costringerà WordPress a utilizzare la versione http deltuo dominio.Se questo risolveilproblema,qualcosanel database lo sta causando.
Se hai configurato deiplugin,assicurati di disabilitarlituttiper assicurarti chenessuno di loro stia causando questoproblema.
Inoltre,ti consiglio di utilizzare lamodalità dinavigazionein incognito di Chrome o lamodalitàprivata di Firefoxper visitareiltuo sito webe vedere se l'HTTPS è ancora utilizzato da WordPress.
Sefunzionain modalità dinavigazionein incognito (WordPress utilizza HTTP correttamente),dovrestiprovare a svuotare la cache delbrowser.Hogià visto la cache delbrowser reindirizzareiltraffico http a httpsprima,anche se httpsnonfunziona.Consiglierei di assicurarti chenon sia cache.
Following Pat's answer. You can try adding these 2 lines to your wp-config.php file to see if this fixes the error:
define( 'WP_SITEURL', 'http://example.com' ); define( 'WP_HOME', 'http://example.com' );
This will force WordPress to use http version of your domain. If this fixes the issue, something in the database is causing this.
If you have any plugins setup, make sure to also disable all of them to make sure none of them are causing this issue.
Also, I recommend using Chrome's Incognito mode or Firefox's Private mode to visit your website and see if the HTTPS is still being used by WordPress.
If it's working in the Incognito mode (WordPress uses HTTP correctly), than you should try clearing your browser cache. I've seen browser cache redirecting http traffic to https before, even if https isn't working. I would recommend making sure it's not cache.
-
Non sembrainfluenzarenulla,anchein incognito/privato.Intendipluginperbrowser?Non homai usato wordpressprimae non hofattonulla su diesso oltre alla configurazionee allamodifica di .htaccesse wp-config.phpper cercare dieliminare questoproblema.Doesn't seem to affect anything, even in incognito/private. Do you mean browser plugins? I haven't used wordpress before and haven't done anything on it apart from setup and editing .htaccess and wp-config.php to try and get rid of this issue.
- 0
- 2017-02-14
- cCe.jbc
-
@ cCe.jbc è strano.Mi riferivo aiplugin di WordPress,ma sembra chepotrestinon averne ancora attivi.Che aspetto hailtuofile .htaccess?È htaccesspredefinito o hai qualcosa lì dentro? Puoi vedere htaccess dibase qui: https://codex.wordpress.org/htaccess@cCe.jbc it is weird. I was referring to WordPress plugins, but it sounds like you might not have any active yet. What does your .htaccess file look like? Is it default htaccess or you got something in there? You can see basic htaccess here: https://codex.wordpress.org/htaccess
- 0
- 2017-02-15
- Viktor
-
- 2017-02-16
Controllailtuofile
wp-config.php
per righe come:define( 'WP_SITEURL', 'https://....' ); define( 'WP_HOME', 'https://.....' );
Se stai utilizzandoil server linux,modifica o crea unfile
.htaccess
nellatua cartella WordPress conil seguente:RewriteEngine On RewriteCond %{HTTPS} on RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
Oppure l'opzionemigliore è
Se haiinstallato correttamente WordPress,vai a
settings>general>
WordPress Address (URL)
: cambialo dahttps
ahttp
Site Address (URL)
: uguale a questoCheck your
wp-config.php
file for lines like:define( 'WP_SITEURL', 'https://....' ); define( 'WP_HOME', 'https://.....' );
If you are using linux server, then edit or create an
.htaccess
file in your WordPress folder with the followin in it:RewriteEngine On RewriteCond %{HTTPS} on RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
Or the better option is
If you have successfully installed the WordPress then go to
settings>general>
WordPress Address (URL)
: change this fromhttps
tohttp
Site Address (URL)
: same with this-
Ho risoltoilproblema.Mailproblemanonera quello chepensavofosse.Puoi vedere la soluzionenellamia domanda.Penso che questoe le altre risposte qui avrebberofunzionato se questofosseilproblema.Aproposito,non sono riuscito ad accedere all'amministratore (nonera sicuro) quindinonpotevo andare alleimpostazioni.I've solved, the problem. But the problem wasn't what I thought it was. You can see the solution in my question. I think this, and the other answers here would have worked if this was the problem. By the way, I couldn't log into admin (it was insecure) so I couldn't have gone to settings.
- 0
- 2017-02-16
- cCe.jbc
-
Ottimo @ cCe.jbc :)Great @cCe.jbc :)
- 0
- 2017-02-16
- Arvind Singh
-
- 2019-01-24
Ilproblema deveessere siteurle i valori home vengono aggiornatinel database con https,per risolverloprocedi come segue.
Per rendereimmediatamente attivoil sito,aggiungi le seguenti righe sotto leistruzioni defineesistentiin wp-config.php. Questo sovrascriverài valori del database.puoi aggiornareiltuonome di dominioinvece di localhost.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
Correggii riferimenti al database https
Vai aphpadminedesegui la seguente querye cerca https nelle righe delfiltro comemostratonell'immagine sottostante. setrovi homee siteurls con https ,sostituiscili con http"
SELECT * FROM wp_options
Dopo aver rimosso https dal database. rimuovi le seguenti righe da wp-config.php. e riavvia apache.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
Iltuo sito dovrebbeessere attivo.buonafortuna!
Issue must be siteurl and home values are updated in the database with https, to fix it do following.
To bring site instantly up, add following lines under existing define statements in wp-config.php. This will override database values. you can updated your domain name instead of localhost.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
Fix https database references
Go to phpadmin and execute following query and search for https in Filter rows as shown in the below picture. if you find home and siteurls with https, replace it with http
SELECT * FROM wp_options
Once you have removed https from the database. remove following lines from wp-config.php. and restart apache.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
Your site should be up. good luck!
-
- 2020-07-17
Hoinstallato WordPresse configuratoil database.
Vado all'indirizzoe lapagina di configurazione è lì,manessun CSS.
Penso: qualcosanon va,ma seeseguoil setupforsetuttotornerà allanormalità.
No.
Quindipasso unpo 'ditempo aesaminarei risultati di ricercapergli stili di WordPress chenonfunzionano,ecc.
Scopro chetuttii link sonopresentiin testa alla/e pagina/e e rimandano allepaginegiuste,manon vengono caricati.
WordPress sta cercando di utilizzare una connessione sicura,manon ho un certificato SSL o qualcosa delgeneree non dovreipensare chene avròbisognoneancheper questo. Ciò significa chetuttii collegamenti afogli di stilee script vengono consideratiinaffidabilie bloccati.
Homodificato lemie ricerchein modo chepuntinonella direzione della disabilitazione di https/ssl,maniente di quello che hotrovatofunziona.
Peresempio. Hoprovato ad aggiungereelementi almiofile .htaccess (hopersoil collegamento a un'altra domanda correlata su questo sito)
Hoprovato atrovare righe come
define( 'force_SSL', true );
in wp-config.phpma senza successo ( domanda correlata ). Ho ancheprovato ad aggiungere queste righe (cambiandolein false).Grazieper qualsiasi aiuto.
Soluzione: Ilproblemanonera quello chepensavofosse. Dataplicity (sto scappando da unpi)forza l'uso di HTTPS,mapoiché wordpress non utilizzava HTTPS,gli script "insicuri"non venivano caricati. Tutto quello che dovevofareera abilitare HTTPS.
Sono sicuro che le risposte riportate di seguito avrebbero aiutato seilmioproblemafosse stato quello chepensavo,e spero che aiutinogli altri con lo stessoproblema chepensavo di avere.