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.
Hace 5 años
Dear all,

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

Thanks
Hace 5 años
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
Hace 5 años
Thanks for reply.
Another questione: from which version of nopcommerce has been developed the compatibility with pci tls1.2?

Best regards
Hace 5 años
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
Hace 5 años
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.
Hace 5 años
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 :)
Hace 5 años
Anyone help me with the above?

Thanks

Paul
Hace 5 años
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.