isuue with ssl

ok so I was trying to get an SSL certificate from sslfree.com and there I was asked to make a directory called .well-known in the root directory i.e htdocs in this case and a subdirectory under .well-known named acme-challenge. And I was asked to upload two files into that and after doing the upload I had to verify via two links which showed the file names which was ok. but after that when I tried to download the certificate it loaded for a longer time and showed some error which mainly said domain challenge3 failed and there is no valid ip address for domainname.

Did you see this article? https://infinityfree.net/support/cannot-use-or-have-problems-using-lets-encrypt-or-sslforfreecom/

itried cloudflare. still no https anywhere is my site and when i am trying to access the url using https is is opening but showing mot secured

@suraj27 said:
itried cloudflare. still no https anywhere is my site and when i am trying to access the url using https is is opening but showing mot secured

This problem is caused from your DNS cahce, try clearing it and retrying.
You can also get a Let’s Encrypt certificate if you follow the second method described here:
https://techub.tk/free-ssl-free-hosting-ifreenet/

@ChrisPAR said:

@suraj27 said:
itried cloudflare. still no https anywhere is my site and when i am trying to access the url using https is is opening but showing mot secured

This problem is caused from your DNS cahce, try clearing it and retrying.
You can also get a Let’s Encrypt certificate if you follow the second method described here:
https://techub.tk/free-ssl-free-hosting-ifreenet/

how to clear dns cache?

@suraj27 said:
itried cloudflare. still no https anywhere is my site and when i am trying to access the url using https is is opening but showing mot secured

It takes time for the SSL to be issued though.

@suraj27 said:

@ChrisPAR said:

@suraj27 said:
itried cloudflare. still no https anywhere is my site and when i am trying to access the url using https is is opening but showing mot secured

This problem is caused from your DNS cahce, try clearing it and retrying.
You can also get a Let’s Encrypt certificate if you follow the second method described here:
https://techub.tk/free-ssl-free-hosting-ifreenet/

how to clear dns cache?

If you use Windows, you can open Command Prompt and paste the following:
ipconfig /flushdns
If you use Chrome, you may eneter the folowing adress:
chrome://net-internals/#dns
And press: Clear host cache

Cloudflare takes 24 hours to issue SSL certificates for free accounts.

@Admin said:
Cloudflare takes 24 hours to issue SSL certificates for free accounts.

ok my ssl is activated and whenever i open site using https is shows secure and opens perfectly and all pages and posts open with https. but if i don’t put https manually and just put the domain name it does not open https.

@suraj27 said:

@Admin said:
Cloudflare takes 24 hours to issue SSL certificates for free accounts.

ok my ssl is activated and whenever i open site using https is shows secure and opens perfectly and all pages and posts open with https. but if i don’t put https manually and just put the domain name it does not open https.

now if I am putting www.domainname it is going to https but without www it is not opening https

@suraj27 said:

@suraj27 said:

@Admin said:
Cloudflare takes 24 hours to issue SSL certificates for free accounts.

ok my ssl is activated and whenever i open site using https is shows secure and opens perfectly and all pages and posts open with https. but if i don’t put https manually and just put the domain name it does not open https.

now if I am putting www.domainname it is going to https but without www it is not opening https

Add this .htaccess rule:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Or go to Cloudflare and enable the “Always HTTPS” option.