PHP Warning:fread(): SSL: Connection reset by peer in /var/www/html/wp-includes/class-wp-http-streams.php line 269
PHP Warning:fread(): SSL: Connection reset by peer in /var/www/html/wp-includes/class-wp-http-streams.php line 269
PHP Warning:fread(): SSL: Connection reset by peer in /var/www/html/wp-includes/class-wp-http-streams.php line 269
wp_config was set up to force SSL by overwriting $_SERVER[‘HTTPS’], I respolved the issue. I assume someone was trying to make SSL work behind the proxy at one point. It would actually be a much better solution ( specifically for asset links ) to use the double slash //
Go to your WordPress dashboard and navigate to Settings >> General, then change the WordPress Address (URL) and the Site Address (URL) from HTTP to HTTPS. Then hit Save Changes button. If your problem is not fixed yet then go to Settings >> Permalinks and hit Save Changes button again. It’ll re-generate your .htaccess file. … Read more
It is not absolutely necessary to add anything to the config file. However it’s a good idea to do a test to look for any unsecured Http calls, such as stylesheets or Scripts. A good resource for this is https://www.whynopadlock.com/. The force SSL Setting can sometimes help with requests coming from plug-ins or anything you … Read more
There are several ways to enable https on your wordpress site. You need to update your site urls including https in it if you have access to your dashboard You can also define both the WP_SITEURL and WP_HOME in your test wp-config.php define( ‘WP_SITEURL’, ‘http://example.com.mytestdomain.com’ ); define( ‘WP_HOME’, ‘http://example.com.mytestdomain.com’ ); In relation to your nginx … Read more
I checked out your website and the issue seems to be related to files served from https://files.planetofsuccess.com/…. If you`re disabling the CDN feature from W3 Total Cache, things should be working fine. So the problem is not the plugin, but the CDN connection, which breaks things. To fix this issue, you’ll have to get in … Read more
Here is more info on the code you are referring to: https://codex.wordpress.org/Function_Reference/home_url “https” if is_ssl() and “http” otherwise. If the $scheme argument is “http” or “https” the is_ssl() check is overridden.
Chrome incorrectly displaying WP login as ‘not fully secure’
WordPress Network with SSL for multiple domains
Thanks for your help, Jack, it was really useful. What I ended up doing was using the export and import function in the control panel. I returned the original blog to the main server directory. I then created a new installation of WordPress inside my website’s directory. It was just then a case of exporting … Read more