| T O P I C R E V I E W |
| Moshe |
Posted - 11/17/2004 : 07:30:26 Hi
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
Any ideas of what the problem is?
Thanks
|
| 1 L A T E S T R E P L I E S (Newest First) |
| admin |
Posted - 11/18/2004 : 21:46:03 Moshe,
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 |
|
|