After installing the new Report Portal v 1.5, when accessing the portal everything seems to work well, but when I try to access the Setting page under admin tab I get the following error:
HTTP 500.100 - Internal Server Error - ASP error Internet Information Services
Technical Information (for support personnel) • Error Type: Microsoft VBScript runtime (0x800A01B6) Object doesn't support this property or method: 'fso.GetFolder' /NReportPortal/admin/settings.asp, line 94 • Browser Type: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322) • Page: GET /NReportPortal/admin/settings.asp
This problem usually happens when Virus Scan Software is installed on the Server and is disallowing the FileSystemObject for accessing any physical folders. A work around for this problem is replacing GetStylesheetList() with the one below:
Function GetStylesheetList() Dim sTemp If lcase(Application("Stylesheet")) = "style2.css" Then sTemp = "<option value='style.css'>style.css<option value='style2.css' selected>style2.css" Else sTemp = "<option value='style.css' selected>style.css<option value='style2.css'>style2.css" End If GetStylesheetList = sTemp End Function