Nopcommerce 3.7 and compatibility with TLS1.2

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

Is nopcommerce 3.7 compatible with the PCI TLS1.2 standard?

Thanks
5 years ago
mmvvdo wrote:
Dear all,

Is nopcommerce 3.7 compatible with the PCI TLS1.2 standard?

Thanks


No.

But You can do it . Go source code version, add the following line of code  in Global.asax.cs file


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


File Path: ~\Presentation\Nop.Web\Global.asax.cs
5 years ago
Thanks for reply.
Another questione: from which version of nopcommerce has been developed the compatibility with pci tls1.2?

Best regards
5 years ago
mmvvdo wrote:
Thanks for reply.
Another questione: from which version of nopcommerce has been developed the compatibility with pci tls1.2?

Best regards


From Nopcommerce version  3.90

Sohel
5 years ago
nopStation wrote:
Thanks for reply.
Another questione: from which version of nopcommerce has been developed the compatibility with pci tls1.2?

Best regards

From Nopcommerce version  3.90

Sohel


Hi NOP station.
Do you know if it was included in the original 3.90 release or did it come in an update/revision later.
Thanks for your help.
5 years ago
Hello

So I make the change in:

File Path: ~\Presentation\Nop.Web\Global.asax.cs

and recompile on my local machine inside VS.

Once this is done, what file should I then copy to my web server?

Thanks :)
5 years ago
Anyone help me with the above?

Thanks

Paul
5 years ago
paulbrown79 wrote:
Anyone help me with the above?

Thanks

Paul


You should copy Nop.Web.dll inside the Presentation\Nop.Web\bin directory.
You'll need to restart the app to reload the DLLs.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.