Sitecore - System.Security.Cryptography.CryptographicException

前端 未结 2 1075
花落未央
花落未央 2020-12-19 16:29

Hi and thank you for your help. We\'re trying to keep a Sitecore site up and running on a WS 2008 R2 Standard server but keep running into the following exception:

2条回答
  •  无人及你
    2020-12-19 17:23

    This might help: Running Sitecore 6 on Windows 7′S IIS.

    It basically says to add this in your global.asax:

    public void Application_Start() {
      System.Security.Cryptography.RSACryptoServiceProvider.UseMachineKeyStore = true;
      System.Security.Cryptography.DSACryptoServiceProvider.UseMachineKeyStore = true;
    }
    

提交回复
热议问题