Disallowed Parent Path

  •  02-16-2008, 5:13 PM

    Disallowed Parent Path

    This is a new install
       CuteEditor_asp_6_asp_*__**** running on Windows Server 2003
     
    Editor init:
     
       Dim editor
       Set editor = New CuteEditor
       editor.ID = "Editor1"
       editor.Text = "Type here"
       editor.FilesPath = "/CuteEditor_Files/"
       'editor.URLType = "SiteRelative"
       editor.ImageGalleryPath = "/Uploads/"
       editor.EditorBodyStyle = "font:normal 12px arial;"
       editor.EditorWysiwygModeCss = "asp.css"
       editor.Width = "100%"
       editor.Height = "100%"
       editor.LoadHTML("/"&Request.QueryString("filename"))
       editor.Draw()
     
    The error messages popping up are like these when clicking buttons such as the drop down button (or any of the FORM elements):
    <p>Server.MapPath()</font> <font face="Arial" size=2>error 'ASP 0175 : 80004005'</font>
    <p>
    <font face="Arial" size=2>Disallowed Path Characters</font>
    <p>
    <font face="Arial" size=2>/CuteEditor_Files/Dialogs/Include_GetString.asp</font><font face="Arial" size=2>, line 21</font>
    <p>
    <font face="Arial" size=2>The '..' characters are not allowed in the Path parameter for the MapPath method.
    </font>
View Complete Thread