SSL not working in wordpress

Duunia

Newbie
Joined
May 13, 2015
Messages
3
Reaction score
0
Hello!

Can someone help me out fast? We bougth SSL cerficate into our wordpress website and for some reason it doesnt work. We have installed cerficate into the servers and it should be working, we have also tested almost all wordpress plugins related to "Force to https" etc..

Site is

w ww . Duunia . f i


How can i make everything to go via SSL? :cool:

Looking for a fast solution, thanks!
 
Are you trying to force HTTPS? Have you changed your website URL in General>settings?

Also in Alache, make sure your address is HTTPS and that the HTTP version is an alias of the new address.
 
I have tried "Force HTTPS" and all other plugins too and i have changed address in general settings, without success.
 
The website works with https, but the unsafe message appears. Had that issue once because the cert wasn't installed correctly on the server. You can talk with your hoster's support to fix it.
 
"Help me FAST" is something that should not be done for free. Anyway, if you have done everything else correctly, then I guess your https is not working because you have non https urls in your theme which is causing the connections not to be secure. Look into that and your problem will be solved
 
I see that it is an almost brand new website.
remove the wordpress version , and reinstall it , when you are asked the verssion you want.... select https://www, and all will be working smoothly.

I`m speaking about installing wordpress via softaculos. or any other 3rd party should have this option available
 
Are you working with a self-managed VPS or shared hosting? You need to give us more detail, saying "I've used all the plugins" isn't enough for us to help. Your sites-available .conf file should look something like this:

<VirtualHost *:443> ServerName yourwebsite.com
ServerAlias *yourwebsite.com
DocumentRoot /var/www/yourwebsite.com


RewriteEngine On
RewriteCond %{HTTPS_HOST} !=yourwebsite.com [NC]
RewriteRule ^/(.*)$ http://yourwebsite.com/$1 [R=301,L]


ErrorLog /var/log/apache2/yourwebsite.com-error.log
LogLevel warn
CustomLog /var/log/apache2/yourwebsite.com-access.log combined
</VirtualHost>

Notice the port 443 instead of 80 and the HTTPS_HOST
 
Now it looks like that admin panel has cerficate, but its not trusted.

It says:

This CA Root cerfificate is not trusted. To enable trust, install this cerfificate in trusted root cerfification authorities store.

How can i make it trusted and what other things i am doing wrong?

Also it is new, but there is so much information already that i don't wanna re-install it.
 
the best way to go on this is to contact your hosting provider support. as we don`t have all the information relevant to your problem ... so we can help you out ...
 
Sounds like the problem has nothing to do with WordPress instead your certificate is not installed properly. You should double check the certificate installation and try to verify it.
 
Did you solve the problem?

Maybe apache was (or should I say IS) causing the problem?
Have you double checked the apache configuration?
 
Just install Intermediate certification too....thats all
 
Back
Top