ReportPortal
ReportPortal
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 ReportPortal General Forum
 Report Portal General Issues
 ReportPortal 1.5 Error

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Message:

* HTML is ON
* Forum Code is OFF
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

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

ReportPortal © 2000-2002 Snitz Communications Go To Top Of Page