Get SSL Certificates for your Site

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
11/21/2006 9:56:50 PM
Gravatar
Total Posts 1

Get SSL Certificates for your Site

Hello friends,
Every serious internet user is aware of risks involved in online transactions such as phishing etc. Make your customers believe that your site is secured by getting SSL Certificate for your site.

SSL certificates provide non-forgeable proof of your website's identity, and they are a great way to instill customer confidence in the integrity and security of your online business.

Without SSL security in place, information is transmitted in “clear text.” This is practically an open invitation for hackers, script kiddies, and other mischief makers to use commonly available “packet sniffing” software to snatch the information while in transit.

I've secured my own site with SSL Certificate and my customers feel   hap[pier :-)

[url=http://www.ssl.com./]Get SSL Certificate Now[/url]

 

jenny

11/22/2006 2:29:11 AM
Gravatar
Total Posts 18439

Re: Get SSL Certificates for your Site

Yes SSL is important for security. Professional sites should at the very least require SSL for login, registration, user profile , and any other pages that contain sensitive data. Its an absolute must have for e-commerce sites.

However, those running blogs or other sites where the data is not so sensitive have to weigh the cost of the SSL certificate against the possible consequences of a breach and may find that they can live with the risk. For example, if you don't have SSL, it is possible that someone with access to an upstream router can sniff packets while you are logging in and steal your password. Obviously, if the site contains sensitive data this is very very bad, but if the site is just a blog, the only real possibility for damage is that the person who steals your password can deface your site. The odds of this actually happening to your blog seem kind of slim to me and the consequences are not catastrophic or expensive, just very annoying. Its a big internet out there with lots of sites and it seems unlikely that someone (who has access to an upstream router) is waiting around for you to login to your blog while sniffing packets until you do. I would say that whether or not you do use SSL, you should be careful and not ever use the same password for your blog as for your online banking.

I recently upgraded the SSL certificate on this site from a self signed one to a certificate from RapidSSL.Com, the prices were very reasonable, much more economical than I expected. If you use the free 30 day trial certificate, you get an even better price because of their upgrade special. (Thanks to Aaron King for pointing me to RapidSSL recently when I was inquiring about a signed certificate)

In mojoPortal, there is a web.config setting SSLIsAvailable, if set to true, mojoPortal will always use SSL for login, registration, password recovery, user profile, etc. In addition, when this is set to true a setting will show up in the Pages Settings fro each page to allow requiring SSL on a page by page basis. There is also a setting in Site Settings to require SSL for all pages in the site without having to specify it on each page.

Joe
6/9/2010 9:59:22 PM
Gravatar
Total Posts 16

Re: Get SSL Certificates for your Site

Joe

I am in the process of installing a SSL certificate on my site. I enabled the SSLIsAvailable setting on the web.config but after I do that the Site Settings function in the Administration menu doesn't load anymore. Are there any other settings I need to change web.config or user.config to be able to use SSL?

Please let me know.

Thank you

Eduardo

6/10/2010 7:52:39 AM
Gravatar
Total Posts 18439

Re: Get SSL Certificates for your Site

Hi,

Before you set SSLIsAvailable to true you should test against a static file using https to make sure it works like https://yoursite/Error.htm is an example of a static file you could test on.

Once an SSL certificate is installed on the server, it still has to be installed in the IIS web site using a specific ip address and it may also need a host header for port 443 to resolve the domain name if the ip address is shared with other sites. Do some googling for more info about configuring an ssl certificate in IIS.

Once it works with the static file using https then you can enable it in config.

Hope it helps,

Joe

6/11/2010 9:56:16 AM
Gravatar
Total Posts 16

Re: Get SSL Certificates for your Site

Joe,

Thanks for the response. After the certificate was installed properly on my server, I changed the settings below to "true" and the SSL pages are working properly.

<add key="SSLIsAvailable" value="true" />
<add key="SSLIsRequiredByWebServer" value="true" />
 

Are there any other settings I would need to change?

Thank you very much again for the quick response.

Eduardo Lessa

You must sign in to post in the forums. This thread is closed to new posts.