Plugin does no make good
-
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

-
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.
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.
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
This was already enabled

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.
Well, now everything works perfectly.
Question: how did you fix it?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.
Good!
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');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/.
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>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.
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');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?
-
This reply was modified 7 years, 2 months ago by
The topic ‘Plugin does no make good’ is closed to new replies.