SSL Certificate Question

mazterg

Junior Member
Joined
May 4, 2013
Messages
104
Reaction score
46
Hello Blackhatters,

I'm currently using Namecheap for hosting my site, they gave me a 1 year free SSL self-signed certificate. I tried to use it but some browser is giving some warning.

Is it okay to use it? or do I need to get a trusted signed SSL.
 
Hello Blackhatters,

I'm currently using Namecheap for hosting my site, they gave me a 1 year free SSL self-signed certificate. I tried to use it but some browser is giving some warning.

Is it okay to use it? or do I need to get a trusted signed SSL.
Never hosted with Namecheap, but assume most are the same with free shared SSL. You could see if they support your own certificate and look at letsencrypt (maybe they even support the direct cpanel integration)
 
Let me guess ... You got a scary “your connection is not private” message ?
 
go to whynopadlock.com it will give you an idea why you're website isn't secure.

Make sure stuff you use from other websites like scripts, images videos use https.

Forse ssl in the server .htacess file
 
go to whynopadlock.com it will give you an idea why you're website isn't secure.

Make sure stuff you use from other websites like scripts, images videos use https.

Forse ssl in the server .htacess file

I think It's all good ... hmhmm
 

Attachments

  • Capture.JPG
    Capture.JPG
    44.7 KB · Views: 143
I think It's all good ... hmhmm

force ssl on your site by putting this code on your .htacess file

Code:
# 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]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourwebsite.com/$1 [R,L]
</IfModule>

# END WordPress

not sure i can help with the self signed issue though.
 
I think you must have done sometihng wrong, nobody gives you a selv-signed certificate. That is something you generate yourself. And is only useful for logging on to cpanel and such, not for real websites.
 
Hello Blackhatters,

I'm currently using Namecheap for hosting my site, they gave me a 1 year free SSL self-signed certificate. I tried to use it but some browser is giving some warning.

Is it okay to use it? or do I need to get a trusted signed SSL.

Yes, you are true because browser will give warning while using self signed SSL certificate https://social.technet.microsoft.com/wiki/contents/articles/15189.difference-between-self-signed-ssl-certificate-authority.aspx So you should go with trusted certificate authority's SSL certificates. Certificate authority like Comodo is providing SSL certificate at very less price.
 
Usually the free SSL's, lets encrypt 128 bit are secure but do not come with dynamic site seal which you may want to appease your visitors. For seo it just needs to be secure.
 
I always use sslforfree.com and it works like a charm.

Just remember to update it every few months.

Also get the plugin SSL Everywhere if you're getting any errors.
 
Back
Top