Desactivar SSL / HTTPS para wordpress
-
-
Debe usar HTTPS,no hacerloesinseguro ytiene un SEOpobre ypenalizacionespor velocidad depágina.Además,¿puedepublicar su respuesta como respuesta?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 respuestas
- votos
-
- 2017-02-14
Revise su archivo
wp-config.php
para ver si hay líneas como:define( 'WP_SITEURL', 'https://example.com' ); define( 'WP_HOME', 'https://example.com' );
Consultetambién latabla
{prefix}_options
de subase de datos:SELECT * FROM wp_options WHERE option_name='siteurl' OR option_name='home';
... asumiendo queelprefijo de subase de datoses
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_
.-
No hay líneas comoesaen mi wp-config.php y ya verifiqué latabla de opciones yeso dice `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
-
Tengaen cuenta que siestablece las constantes,noesnecesario que actualice lasfilas de opcionespara home y 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
-
Esas constantesestánmal.Debe ser 'WP_HOME','WP_SITEURL'Those constants are wrong. Should be 'WP_HOME', 'WP_SITEURL'
- 0
- 2017-02-15
- ngearing
-
Tienes razón,@Nath.Esoes lo que obtengopor haceresto dememoria.Right you are, @Nath. That's what I get for doing this from memory.
- 0
- 2017-02-15
- Pat J
-
- 2017-02-14
Puedemodificarel archivo .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]
-
Estafue la única solución queme ayudóen localhost (xampp).This was the only solution that helped me on localhost (xampp).
- 0
- 2018-09-06
- Henning Fischer
-
- 2017-02-19
Verifique la URL de su sitio webestablecidaen la configuración. Esto sepuede hacer através de labase de datos como Pat Said,pero sinoeres ese expertoen tecnología y aúnpuedes acceder al administrador de WordPress,úsalo.
Vaya a Configuración -> General ymarque
WordPress Address (URL)
ySite Address (URL)
.Deben comenzar conhttp
en lugar 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
.-
He resueltoelproblema.Peroelproblemanoera lo que yopensaba.Puedes ver la soluciónen mipregunta.Creo queesto y las otras respuestas aquí hubieranfuncionado siestefueraelproblema.Por cierto,nopudeiniciar sesiónen el administrador (erainseguro),así quenopude haberido a la configuración.Como le dije a Pat,ya verifiqué labase de datos detodosmodos.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
Enmi archivo
wp-config.php
tengo:define('WP_SITEURL', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com'); define('WP_HOME', FLYWHEEL_DEFAULT_PROTOCOL . 'example.com');
Necesitasencontraresta cadena:
define('FLYWHEEL_DEFAULT_PROTOCOL', 'https://');
Y cambie
https://
ahttp://
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
Siguiendo la respuesta de Pat.Puedeintentar agregarestas 2 líneas a su archivo wp-config.phppara ver siesto corrigeelerror:
define( 'WP_SITEURL', 'http://example.com' ); define( 'WP_HOME', 'http://example.com' );
Esto obligará a WordPress a utilizar la versión http de su dominio.Siesto solucionaelproblema,algoen labase de datos loestá causando.
Sitiene algún complemento configurado,asegúrese de deshabilitarlostambiénpara asegurarse de queninguno deellosesté causandoesteproblema.
Además,recomiendo usarelmodoincógnito de Chrome oelmodoprivado de Firefoxpara visitar su sitio web y ver si WordPresstodavía usa HTTPS.
Siestáfuncionandoen modoincógnito (WordPress usa HTTP correctamente),entonces deberíaintentarborrar la caché de sunavegador.He vistoel caché delnavegador redirigireltráfico http a https antes,incluso si httpsnofunciona.Recomendaría asegurarse de queno sea caché.
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.
-
Noparece afectarnada,inclusoen modoincógnito/privado.¿Te refieres a los complementos delnavegador?No he usado wordpress antes yno he hechonadamás que configurar yeditar .htaccess y wp-config.phpparaintentar deshacerme deesteproblema.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.jbcesextraño.Me refería a los complementos de WordPress,peroparece que aúnnotienesninguno activo.¿Cómoes su archivo .htaccess?¿Es htaccesspredeterminado otienes algo ahí? Puede ver htaccessbásico aquí: 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
Revise su archivo
wp-config.php
para ver si hay líneas como:define( 'WP_SITEURL', 'https://....' ); define( 'WP_HOME', 'https://.....' );
Siestá utilizando un servidor Linux,edite o cree un archivo
.htaccess
en su carpeta de WordPress con lo siguiente:RewriteEngine On RewriteCond %{HTTPS} on RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
O lamejor opciónes
Si hainstalado WordPress correctamente,vaya a
settings>general>
WordPress Address (URL)
: cambieesto dehttps
ahttp
Site Address (URL)
: lomismo conestoCheck 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-
He resueltoelproblema.Peroelproblemanoera lo que yopensaba.Puedes ver la soluciónen mipregunta.Creo queesto y las otras respuestas aquí hubieranfuncionado siestefueraelproblema.Por cierto,nopudeiniciar sesiónen el administrador (erainseguro),así quenopude haberido a la configuración.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
-
Genial @ cCe.jbc :)Great @cCe.jbc :)
- 0
- 2017-02-16
- Arvind Singh
-
- 2019-01-24
Elproblema debe ser siteurl y los valores deinicio se actualizanen labase de datos con https,para solucionarlo,haga lo siguiente.
Para queel sitio aparezcainstantáneamente,agregue las siguientes líneas debajo de las declaraciones definidasexistentesen wp-config.php. Esto anulará los valores de labase de datos.puede actualizar sunombre de dominioen lugar de localhost.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
Corrija las referencias a labase de datos https
Vaya aphpadmin yejecute la siguiente consulta ybusque https en Filtrarfilas como semuestraen la siguienteimagen. siencuentra home y siteurls con https ,reemplácelopor http×
SELECT * FROM wp_options
Una vez que hayaeliminado https de labase de datos.elimine las siguientes líneas de wp-config.php. y reinicie apache.
define( 'WP_SITEURL', 'http://localhost'); define( 'WP_HOME', 'http://localhost');
Su sitio deberíaestar activo.buena suerte!
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
Enmi caso,había un complemento que obligaba a redireccionar a https.Por lotanto,también verifique si algún complementoestá activo y redirija las solicitudes a https.
In my case, there were a plugin that force redirect to https. So, also check if any plugin is active and redirect requests to https.
Instalé WordPress y configuré labase de datos.
Voy a la dirección y lapágina de configuraciónestá allí,perono CSS.
Creo que algoestámal,pero si hago la configuración,tal veztodo vuelva a lanormalidad.
No.
Entonces,dedico untiempo abuscaren los resultados debúsqueda losestilos de WordPress quenofuncionan,etc. Descubro quetodos losenlacesestánpresentesen elencabezado de la (s)página (s) y apuntan a laspáginas correctas,perono seestán cargando.
WordPressestáintentando usar una conexión segura,peronotengo un certificado SSLni nada deeso yno creo quenecesite unoparaestotampoco. Esto significa quetodos losenlaces a hojas deestilo y scripts se considerannofiables yestánbloqueados.
Cambiémisbúsquedaspara apuntaren la dirección de deshabilitar https/ssl,peronada de lo que heencontradofunciona.
P.ej. Intenté agregar cosas ami archivo .htaccess (perdíelenlace a otrapregunta relacionadaen este sitio)
Intentéencontrar líneas como
define( 'force_SSL', true );
en wp-config.phpperofueen vano (pregunta relacionada ). Tambiénintenté agregarestas líneas (cambiándolas afalsas).Graciaspor cualquier ayuda.
Solución: Elproblemanoera lo que yopensaba. Dataplicity (meestoy quedando sinpi)fuerzael uso de HTTPS,pero como wordpress no usaba HTTPS,los scripts 'inseguros'no seestaban cargando. Todo lo quetenía que hacerera habilitar HTTPS.
Estoy seguro de que las respuestas a continuaciónme habrían ayudado simi problemafuera lo quepensé queera,yespero que ayuden a otros conelmismoproblema quepensé.