"Cannot read configuration file due to insufficient permisions" error and solution
Cannot read configuration file due to insufficient permisions" error
In the installation of 2.20.48 and later packages, new fields are added to the configuraiton table for security reasons
Because System.WebServer.RewriteRules.Websitename is full, you are looking for the url write property of IIS and you get the following error
SELECT * FROM CONFIGURATION WHERE KEYNAME LIKE '%System.WebServer.RewriteRules.Websitename%' The line "System.WebServer.RewriteRules.Websitename" appears as "Default Web Site". We fix the problem by assigning a null value. update CONFIGURATION set VALUE = ' ' WHERE KEYNAME LIKE '%System.WebServer.RewriteRules.Websitename%'