IIS stuck in processing directory browsing

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Re: IIS stuck in processing directory browsing

    Disable Norton. [url]www.aspfaq.com/2180[/url]




    "Vladimir" <vldpatt@netscape.net> wrote in message
    news:OWS4mKXRDHA.1556@TK2MSFTNGP10.phx.gbl...
    > I'm running ASP on IIS 5.1 on Windows XP, the same thing works on Windows
    98
    > with PWS.
    > The function below stuck the IIS - draws only frame with nothing inside
    and
    > wait for infinite. All other requests to IIS are stuck. I presume that it
    is
    > some permission thing, but what? Is there some log or something that I can
    > check? Please help!
    >
    > function fBrowse(vFormRG,vPath,vPathIm)
    > {
    > if ( OpenRG != "" ) wt.close();
    > OpenRG = "1";
    > wt = window.open("<% = BrowseURL %>" +
    > "?FormRG=" + vFormRG +
    > "&InfoRG=1" +
    > "&Path=" + vPath +
    > "&PathIm=" + vPathIm +
    > "&SelMenuID=<% = vSelMenuID %>" +
    > "&SelSubMenuID=<% = vSelSubMenuID %>",
    > "NewWin",
    >
    >
    "location=0,menubar=0,status=0,toolbar=0,scrollbar s=1,height=500,width=650,l
    > eft=0,top=150");
    > wt.focus();
    > }
    >
    >

    Aaron Bertrand - MVP Guest

  2. Similar Questions and Discussions

    1. Turn off Directory Browsing in Server Instances
      I find that I can browse the directories in a server instance. I've created a server instance and can access the cfadministrator via the...
    2. Disabling CFM processing for a directory
      At our University, we have CF Enterprise 6.1. We have personal and organizational pages on the same server as our business apps. We have used...
    3. directory browsing in localhost:8500
      Does anyone know how I can enable directory browsing in localhost:8500? I have it enabled in localhost, but with :8500, if runs index.cfm instead...
    4. WebPage Directory Browsing
      Hi, How do I configure a page on a sub intranet page to browse a directory ? ( I want to do this to prevent constant updates of information on...
    5. password protected directory browsing
      Hello- I've got a directory that is password protected (hosted on XO comm site, where they use an .htaccess file). When I navigate out of the...
  3. #2

    Default IIS stuck in processing directory browsing

    I'm running ASP on IIS 5.1 on Windows XP, the same thing works on Windows 98
    with PWS.
    The function below stuck the IIS - draws only frame with nothing inside and
    wait for infinite. All other requests to IIS are stuck. I presume that it is
    some permission thing, but what? Is there some log or something that I can
    check? Please help!

    function fBrowse(vFormRG,vPath,vPathIm)
    {
    if ( OpenRG != "" ) wt.close();
    OpenRG = "1";
    wt = window.open("<% = BrowseURL %>" +
    "?FormRG=" + vFormRG +
    "&InfoRG=1" +
    "&Path=" + vPath +
    "&PathIm=" + vPathIm +
    "&SelMenuID=<% = vSelMenuID %>" +
    "&SelSubMenuID=<% = vSelSubMenuID %>",
    "NewWin",

    "location=0,menubar=0,status=0,toolbar=0,scrollbar s=1,height=500,width=650,l
    eft=0,top=150");
    wt.focus();
    }


    Vladimir Guest

  4. #3

    Default Re: IIS stuck in processing directory browsing

    Actually, you only need to disable script blocking in
    Norton.

    Carl
    >-----Original Message-----
    >Disable Norton. [url]www.aspfaq.com/2180[/url]
    >
    >
    >
    >
    >"Vladimir" <vldpatt@netscape.net> wrote in message
    >news:OWS4mKXRDHA.1556@TK2MSFTNGP10.phx.gbl...
    >> I'm running ASP on IIS 5.1 on Windows XP, the same
    thing works on Windows
    >98
    >> with PWS.
    >> The function below stuck the IIS - draws only frame
    with nothing inside
    >and
    >> wait for infinite. All other requests to IIS are
    stuck. I presume that it
    >is
    >> some permission thing, but what? Is there some log or
    something that I can
    >> check? Please help!
    >>
    >> function fBrowse(vFormRG,vPath,vPathIm)
    >> {
    >> if ( OpenRG != "" ) wt.close();
    >> OpenRG = "1";
    >> wt = window.open("<% = BrowseURL %>" +
    >> "?FormRG=" + vFormRG +
    >> "&InfoRG=1" +
    >> "&Path=" + vPath +
    >> "&PathIm=" + vPathIm +
    >> "&SelMenuID=<% = vSelMenuID %>" +
    >> "&SelSubMenuID=<% = vSelSubMenuID %>",
    >> "NewWin",
    >>
    >>
    >"location=0,menubar=0,status=0,toolbar=0,scrollba rs=1,hei
    ght=500,width=650,l
    >> eft=0,top=150");
    >> wt.focus();
    >> }
    >>
    >>
    >
    >
    >.
    >
    Carl Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139