content block https from http
content block https from http
content block https from http
I have solved similar problems by running a search and replace plugin. That way you can query the database and make it change all the http:// entries to https://.
First you must Update the Site Address under Settings > General. Make sure the address is https://www.followourtrack.fr/. After that update your .htaccess like below. <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule> That .htaccess can work with fine in my server.
This is a common issue. Unfortunately, it is just one of many possible symptoms of incorrectly moving a WordPress site to a new url. The solution is to ensure that WordPress (core, plugins and theme) and your web server are all using the same URL. If you have an SSL cert for the staging site … Read more
Probably the root directory of your web hosting is not where your WordPress blog is, so you’re seeing the default file from your web host. You’ll probably find that content in an index.php or index.html in the root of your web hosting. You may have installed your WordPress in a directory inside the root instead … Read more
White page on requests with Sec-Fetch-Site: cross-site
What is the “Force secure connections” option used for?
If the meta tag is generated by your theme, you can rewrite the URL to https:// if the whole site is forced to use SSL, or better yet, use is_ssl() to check if the page is using https:// and write the URL on the fly. You may have problems with plugins that don’t take SSL … Read more
As you have, use Firebug with Firefox, or use the developer tools in Chrome or Safari or IE to see what’s loading on your site, the errors and work with the HTML. The main non-https errors I see are for fonts from Google and gstatic. So call your fonts in the @import style sheet or … Read more
You cannot revert this. You will need to export your database via PhpMyAdmin and find all of the “HTTPS” instances and replace them with “HTTP”. I would suggest using something like Dreamweaver or Notepad++ to ‘find and replace all’. After you have done that, import your database again.