Upgrading NOP 3.8 to use TSL 1.2

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 years ago
Hi,

I need to disable TSL 1.0 on my web server and use TSL 1.2 instead for PCI compliance, the following changes were made to the Global.asax.cs file.

   protected void Application_Start()
        {
            //most of API providers require TLS 1.2 nowadays
            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;


I have also updated the framework to 4.6, this works ok, but when I disable the TSL 1.0 using IISCrypto on the web server, the web application errors, can anybody help me resolve this.

Many thanks,

Paul.
5 years ago
We are running a v3.6 site on TLS 1.2 with 1.0 disabled, passing PCI... However, we had to pay to get one of our plugins upgraded in order to keep everything functioning.
5 years ago
Thanks, I found the solution, there were two registry entries and an update to SP2 with SQL server as it was still using TSL 1.0
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.