Desativar SSL / HTTPS para WordPress
-
-
Você deve usar https,não afazê-lo éinseguroe tempenalidadespobres de SEOe velocidade depágina.Além disso,vocêpodepostar sua resposta como uma resposta?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 respostas
- votos
-
- 2017-02-14
Verifique o seu arquivo
wp-config.php
para linhas como:define( 'WP_SITEURL', 'https://example.com' ); define( 'WP_HOME', 'https://example.com' );
também verificar o seubanco de dados
{prefix}_options
tabela:SELECT * FROM wp_options WHERE option_name='siteurl' OR option_name='home';
... Assumindo que oprefixo do seubanco de dados é
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_
.-
Não há linhas assimnomeu wp-config.phpe eujá verifiquei atabela Opçõese que diz "http://example.com"para ambosThere 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
-
Para anotar,se você definir as constantes,nãoprecisará atualizar as linhas de opçõespara casae site.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
-
Essas constantesestãoerradas.Deve ser 'wp_home','wp_siteurl'Those constants are wrong. Should be 'WP_HOME', 'WP_SITEURL'
- 0
- 2017-02-15
- ngearing
-
Certo você é,@nath.Isso é o queeu receboporfazerisso damemória.Right you are, @Nath. That's what I get for doing this from memory.
- 0
- 2017-02-15
- Pat J
-
- 2017-02-14
Vocêpodemodificar o arquivo .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]
-
Estafoi a única solução queme ajudouno Host (Xampp).This was the only solution that helped me on localhost (xampp).
- 0
- 2018-09-06
- Henning Fischer
-
- 2017-02-19
Porfavor,verifique o URL do seu site definidonas configurações. Issopode serfeito através dobanco de dados como Pat disse,mas se vocênãoestá que vocêestáexperientee você aindapoderá acessar o Admin WordPress,useisso.
Vápara Configurações -> Gerale Verifique oendereço do WordPress (URL) e
endereço do site (URL)
.Estes devem começar comhttp
em vez dehttps
.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
.-
Eu resolvi oproblema.Mas oproblemanãoera o queeu achava queera.Vocêpode ver a soluçãonaminhapergunta.Eu acho queisso,e as outras respostas aquiteriamfuncionado seessefosse oproblema.Bythe way,eunãopoderiaentrarem admin (foiinseguro)para queeunãopoderiateridopara configurações.Comoeu dissepara Pat,já verifiquei obanco de dados de qualquermaneira.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
nomeu arquivo
wp-config.php
eutenho:define('WP_SITEURL', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com'); define('WP_HOME', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com');
Vocêprecisaencontraresta seqüência:
define('FLYWHEEL_DEFAULT_PROTOCOL', 'https://');
e alterar
https://
parahttp://
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
seguir a resposta do Pat.Vocêpodetentar adicionaressas duas linhas ao seu arquivo wp-config.phppara ver seisso corrige oerro:
define( 'WP_SITEURL', 'http://example.com' ); define( 'WP_HOME', 'http://example.com' );
Issoforçará o WordPress a usar a versão HTTP do seu domínio.Seisso corrige oproblema,algonobanco de dadosestá causandoisso.
Se vocêtiver alguma configuração deplugins,certifique-setambém de desativartodoselesparagarantir quenenhum delesesteja causandoesseproblema.
Também,eu recomendo usar omodoincógnito do Chrome ou omodoprivado do Firefoxpara visitar seu sitee ver se o HTTPS aindaestá sendo usadopelo WordPress.
Seestiverfuncionandonomodoincógnito (o WordPress usa HTTP corretamente),você devetentar limpar o cache donavegador.Eu vi cache donavegador redirecionando otráfego HTTPpara https antes,mesmo se httpsnãoestiverfuncionando.Eu recomendariagarantir quenão seja 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.
-
Nãoparece afetarnada,mesmoem incógnito/privado.Você quer dizerplugins donavegador?Eunão usei o WordPress antese nãofiznada além de configurare editar .htaccesse wp-config.phpparatentar se livrar desseproblema.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 éestranho.Euestavame referindo aplugins WordPress,masparece que vocêpodenãoternenhum ativo ainda.Como é o seu arquivo .htaccess?Épadrão htaccess ou vocêtem algo aí? Vocêpode ver o Htaccessbásico aqui: 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
Verifique o seu arquivo
wp-config.php
para linhas como:Definir ('WP_SITEURL','HTTPS://....'); Definir ('WP_HOME','https://.....');
Se vocêestiver usando o Linux Server,edite ou crie um arquivo
.htaccess
em suapasta WordPress com o seguinte:rewriteengine Rewritecond% {https}em Rewriterule ^ http://% {http_host}% {request_uri} [r=301,l,ne]
ou amelhor opção é
Se vocêtiverinstalado com sucesso o WordPress,então vápara
Configurações & GT; General & GT;
endereço do WordPress (URL)
: altereisso dehttps
parahttp
Endereço do Site (URL)
: Omesmo comesteCheck 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-
Eu resolvi oproblema.Mas oproblemanãoera o queeu achava queera.Vocêpode ver a soluçãonaminhapergunta.Eu acho queisso,e as outras respostas aquiteriamfuncionado seessefosse oproblema.Bythe way,eunãopoderiaentrarem admin (foiinseguro)para queeunãopoderiateridopara configurações.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
-
Ótimo @ cce.jbc :)Great @cCe.jbc :)
- 0
- 2017-02-16
- Arvind Singh
-
- 2019-01-24
problema deve ser siteurle os valores domésticos são atualizadosnobanco de dados com HTTPS,para corrigi-lo seguindo.
Paratrazerinstantaneamente o site,adicione as seguintes linhasem Demonstrações de definiçãoexistentesno WP-CONFIG.PHP. Isso substituirá os valores dobanco de dados. Vocêpode atualizar seunome de domínioem vez de localhost.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
corrigir referências debanco de dados HTTPS
Vápara o PHPADMINe execute a consulta a seguire procurepor https em linhasfiltrantes,conformemostradonaimagem abaixo. Se vocêencontrar casae siteurls com https ,substitua-opor http
SELECT * FROM wp_options
Depois de remover o HTTPS dobanco de dados. Remova as seguintes linhas do WP-Config.php. e reinicie o Apache.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
Seu site deveestarem alta. Boa sorte!
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
Euinstalei o WordPresse configurei obanco de dados.
Eu vou aoendereçoe apágina de configuraçãoestá lá,masnão css.
Eu acho que algoestáerrado,mas seeu apenasfizer a configuração,talveztudo acabe de voltar aonormal.
Não Entãoeupassei umpouco olhando através de resultados depesquisapara wordpressestilosnãofuncionandoetc.
Descobri quetodos os linksestãopresentesna cabeça dapágina (s)e eles apontampara aspáginas certas,masnãoestão sendo carregadas.
O WordPressestátentando usar uma conexão segura,masnãotenho um certificado SSL ou algo assime eunão deveriapensar que vouprecisar de umparaissotambém. Isso significa quetodos os linksparaformatadorese scripts são vistos comonão confiáveis ebloqueados.
Eumudeiminhaspesquisaspara apontar a direção de desabilitar HTTPS/SSL,masnada queencontreitrabalhos.
Porexemplo. Eutentei adicionar coisas aomeu arquivo .htaccess (perdi o linkpara outrapergunta relacionadaneste site)
Eutentei encontrar linhas como
define( 'force_SSL', true );
no wp-config.phpmas sem sucesso ( Pergunta relacionada ). Eutentei adicionaressas linhas (ligando-as comofalse)também.Obrigadopor qualquer ajuda.
Solução: Oproblemanãoera o queeupensava queera. DataPlicity (estouescorrendo de umapi) Forças Uso de HTTPS,mas como WordPress nãofoi Usando HTTPS,os scripts "inseguros"nãoestavam sendo carregados. Tudo queeuprecisavafazerera habilitar https.
Tenho certeza de que as respostas abaixoteriam ajudado se omeuproblemaera o queeupensei queera,e espero queeles ajude os outros com omesmoproblema quantoeupensei quetinha.