SSL Certificate - NOPCommerce 1.9.Enable ONLY for login, registration, and checkout page

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Hey all!

I have my certificate done, and imported.. everything works great.
BUt... the ENTIRE website is SSL encrypted, which.. slows my site down. ALOT.


Can I enable it ONLY for the the pages that need it?? (Login, Registration, CC) etc?
Thanks guys! (and gals)!
13 years ago
In nopCommerce project ssl certificate it not used by all the pages - it is only used by those pages in which sensitive information is involved.

You might be facing the issue of going from https to http:

The page where you don't want "https" just use this code in .cs page

public override PageSslProtectionEnum SslProtected
        {
            get
            {
                return PageSslProtectionEnum.No;
            }
        }


For more information see this: https://www.nopcommerce.com/boards/t/8308/ssl-issue.aspx
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.