Sitecore - System.Security.Cryptography.CryptographicException

前端 未结 2 1071
花落未央
花落未央 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:16

    Setting up the application pool to 4.0 framework fixed the issue.

    0 讨论(0)
  • 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;
    }
    
    0 讨论(0)
提交回复
热议问题