Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there, you are loading scripts from external URL and a logo that come with HTTP, see:

    Mixed Content: The page at 'https://www.fahr-becker.nl/' was loaded over HTTPS, but requested an insecure stylesheet 'https://fonts.googleapis.com/css?family=Lato:300,400,700,900'. This request has been blocked; the content must be served over HTTPS.
    (index):1 Mixed Content: The page at 'https://www.fahr-becker.nl/' was loaded over HTTPS, but requested an insecure stylesheet 'https://fonts.googleapis.com/css?family=Merriweather:400,400italic,700,700italic'. This request has been blocked; the content must be served over HTTPS.
    jquery.themepunch.tools.min.js?rev=4.5.95&ver=4.3.1:25 ThemePunch GreenSocks Logs
    (index):151 Mixed Content: The page at 'https://www.fahr-becker.nl/' was loaded over HTTPS, but requested an insecure stylesheet 'https://fonts.googleapis.com/css?family=Open+Sans|Open+Sans'. This request has been blocked; the content must be served over HTTPS.
    (index):192 Mixed Content: The page at 'https://www.fahr-becker.nl/' was loaded over HTTPS, but requested an insecure image 'https://www.fahr-becker.nl/wp-content/uploads/fahr-becker_logo1.jpg'. This content should also be served over HTTPS.
    jquery.js?ver=1.11.3:4 Mixed Content: The page at 'https://www.fahr-becker.nl/' was loaded over HTTPS, but requested an insecure image 'https://www.fahr-becker.nl/wp-content/uploads/header_bg1.jpg'. This content should also be served over HTTPS.
    (index):351 Mixed Content: The page at 'https://www.fahr-becker.nl/' was loaded over a secure connection, but contains a form which targets an insecure endpoint 'https://www.fahr-becker.nl/ict-vacatures'. This endpoint should be made available over a secure connection.

    This plugin doesn’t force HTTPS to the links, but rather fixing a problem that occurred on some websites that while everything was served over HTTPS (even while navigating), if you specifically tried to access a page via HTTP (via url) it won’t redirect to HTTPS.

    You could also create a SSL force without a plug-in. You have only creat a .htaccess file in your website.

    Install a SSL certificate at your server. I think you have this done already.
    Create a .htaccess in your root file of WordPress (like domain.com/.htacces).
    Put the next code into it:

    # BEGIN WordPress
    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # END WordPress

    Change your url in the general settings from https://(www).domain.com to https(www).domain.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pages not secure’ is closed to new replies.