Hello friends, I would like to express a problem we generally experience. We would like to make a few suggestions to solve the problem experienced by many users.
How to solve SSL Connection Error? What is it caused by?
[Solution] of SSL Green Bar Error
Coming to the topic, you have purchased and installed SSL for the site, all the redirects are ok, but there are still a few questions about the green lock image as Secure in the address bar.
[Solution] of SSL Connection Error
– After opening your site, right click and view source
– Change all links starting with http:// to https://.
– Usually it is in the header.php and footer.php files of your theme, when you edit and save them, your problem will be solved.
What you shouldn't do:
If you have done the steps above but your problem is not resolved, you can take a look at the next step.
Your .htaccess file may be damaged due to some plugins. Sometimes the solution to the error may be very simple, but we may overlook it.
Open your .htaccess file and paste the code mentioned below at the top and check if the error is resolved.
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]