• Resolved steve92

    (@steve92)


    I activated the plugin and clicked here

    but redirects here and the site is not ok. If I remove the “s” the home reappears well

Viewing 15 replies - 1 through 15 (of 21 total)
  • Plugin Author Mark

    (@markwolters)

    Hi,

    the site does load over https:// but the sites resources (images, styling etc) are still loading over http://. Http resources on https:// can be blocked, therefore the styling is missing and the site looks broken. Once you press the ‘Activate SSL’ button, all src links will be updated to https:// which should restore the styling of your site. You might have to clear all caches the site uses after activating SSL.

    Let me know if you have any other questions.

    Thread Starter steve92

    (@steve92)

    With this code I converted all the links on my site to “https” and emptied the cache, but the problem remains

    UPDATE wp_posts SET post_content = REPLACE(post_content, ‘http://albenessereblog.altervista.org’, ‘https://albenessereblog.altervista.org’)

    I put your plugin in another site and it works great

    • This reply was modified 7 years, 2 months ago by steve92.
    Plugin Author Mark

    (@markwolters)

    There are still a large amount of http:// links when loading over https://, this is why the site still appears to be broken when loaded over https://. You don’t have to make any changes to the database when using Really Simple SSL, the mixed content fixer will fix your mixed content dynamically. Pressing the ‘Go ahead, activate SSL!’ button and clearing all caches your site uses should do the trick here.

    Mark

    Thread Starter steve92

    (@steve92)

    This was already enabled

    Plugin Author Mark

    (@markwolters)

    The plugin is activated, but SSL doesn’t seem to be activated yet since there’s no redirect to https:// active. Mixed content does seem to be fixed now on the https:// domain. Can you press the ‘Activate SSL’ button? That should fix your issue.

    Thread Starter steve92

    (@steve92)

    Well, now everything works perfectly.
    Question: how did you fix it?

    Plugin Author Mark

    (@markwolters)

    It can take some time before the caches clear and the link change to https:// has passed through. Glad to hear it’s working perfectly now.

    Thread Starter steve92

    (@steve92)

    Good!

    Thread Starter steve92

    (@steve92)

    Resolved!

    • This reply was modified 7 years, 2 months ago by steve92.
    • This reply was modified 7 years, 2 months ago by steve92.
    Thread Starter steve92

    (@steve92)

    Your plugin is good, but I don’t know what happened, I must to put this code in the config.php if I don’t put it shows error 404

    define('WP_HOME','http://albenessereblog.altervista.org');
    
    define('WP_SITEURL','http://albenessereblog.altervista.org');
    Plugin Author Mark

    (@markwolters)

    Hi,

    that code changes the site url back to http://. When a site is on SSL, the home- and siteurl should also be https://. If you experience 404 errors after moving to SSL you might have to re-save the permalinks twice. We have created a list of possible caused and solutions for 404 errors after moving to SSL here: https://really-simple-ssl.com/knowledge-base/404-pages-wordpress-site-migrating-ssl/.

    Thread Starter steve92

    (@steve92)

    What I do:

    .htaccess

    # BEGIN WPSuperCache
    # END WPSuperCache
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    Plugin Author Mark

    (@markwolters)

    You can try to remove the define home- and siteurl from the wp-config file and then re-save the permalinks twice. If that doesn’t help, you can check the 404 error article from my previous reply to see if any of those are in effect on your site.

    Thread Starter steve92

    (@steve92)

    Now everything works in https, but I must to put these codes in config.php if I remove them, ERR_TOO_MANY_REDIRECTS appears. I have emptied all the caches.

    define('WP_HOME','http://albenessereblog.altervista.org');
    
    define('WP_SITEURL','http://albenessereblog.altervista.org');
    • This reply was modified 7 years, 2 months ago by steve92.
    • This reply was modified 7 years, 2 months ago by steve92.
    Plugin Author Mark

    (@markwolters)

    Hi,

    can you try to change the http:// to https:// like this:

    define('WP_HOME','https://albenessereblog.altervista.org');
    
    define('WP_SITEURL','https://albenessereblog.altervista.org');

    Does that work?

Viewing 15 replies - 1 through 15 (of 21 total)

The topic ‘Plugin does no make good’ is closed to new replies.