Monday, October 24, 2022

Error: 1260 This Program is Blocked by Group Policy Plesk

 1026 This program is blocked by group policy. For more information, contact the system administrator.(GoDaddy server):

We can also eradicate the error “1026 This program block by group policy. For more information, contact the system administrator.” while hosting the asp.net mvc application published copy to the GoDaddy account. We can solve the issues by removing all of the contents inside the system.codedom tag in web.config file. 

Go to web.config file in the project folder then search for system.codedom tag and removed all the contents inside the system.codedom tag. 

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...