Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Ben McKean 260 posts 515 karma points
    Apr 11, 2013 @ 16:04
    Ben McKean
    0

    Media Preview - /base/folderbrowserservice/getchildren/ - /base/folderbrowserservice/getchildren/

    I've just upgraded a site to 4.11.6 but now the Media section isn't working correctly.

    I'm sure this was fixed at one point??

    When I look at the error I see the error is at /base/folderbrowserservice/getchildren/1094/?_=1365686633833

    and the error message is 

    <error>Extension or method not found.</error>

     

  • Ben McKean 260 posts 515 karma points
    Apr 11, 2013 @ 16:10
    Ben McKean
    100

    Fixed it. Was a silly internal rewrite rule which was affecting the request!

  • Patrik Wanche 11 posts 51 karma points
    Aug 14, 2013 @ 15:10
    Patrik Wanche
    0

    I've got the same problem after upgrading from 4.8.0 to 4.11.10. Ben, could you elaborate a bit about your solution? What rewrite rule did you fix?

  • Ben McKean 260 posts 515 karma points
    Aug 14, 2013 @ 16:19
    Ben McKean
    0

    Hi Patrik,

    This one was a while ago and if I remember rightly we had a rewrite rule which changed the casing for all URLs. The request URL was case sensitive so we removed that.

  • Patrik Wanche 11 posts 51 karma points
    Aug 15, 2013 @ 07:33
    Patrik Wanche
    0

    Hi Ben,

    Thank's for your quick reply. Well I do not have that kind of URL rewriting, so I have to continue searching for a solution...
    I'ts strange because it works on my local computer, but not on the server. 

  • Ansar 181 posts 291 karma points
    Aug 21, 2013 @ 22:28
    Ansar
    0

    Do you find the solution.. Its happening for us also on a 4.11.10 site.. 

    There is no URL rewrites and the URL /base/FolderBrowserService/GetChildren/1160?_=1377115837768

    shows <error>Extension not found or permission denied</error>

  • Patrik Wanche 11 posts 51 karma points
    Aug 22, 2013 @ 08:18
    Patrik Wanche
    0

    Yes, I finally found my problem. I had to change the IIS ASP.NET mode from Classic to Integrated.

  • Dan Mac 12 posts 32 karma points
    Sep 04, 2013 @ 11:53
    Dan Mac
    0

    I too had the same issue with the media page constantly loading (spinning icon in right hand panel). Including the following exceptions to my lowercase rewrite rule fixed this issue.

    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
      <add input="{URL}" pattern="Umbraco/(.*)" negate="true" />
      <add input="{URL}" pattern="base/(.*)" negate="true" />

    etc...

  • Sebastiaan Janssen 4899 posts 14655 karma points MVP admin hq
    Oct 09, 2013 @ 11:46
    Sebastiaan Janssen
    0

    Just as a note for other people running in to this:

    If you get this error after you've upgraded from an older version of Umbraco make sure that your replace the Umbraco Module in the web.config;

    In < httpModules>:

    <add name=" UmbracoModule" type="Umbraco.Web.UmbracoModule,umbraco" /> 
    <add name="viewstateMoverModule" type="umbraco.presentation.viewstateMoverModule" /> 
    <add name="umbracoBaseRequestModule" type="umbraco.presentation.umbracobase.requestModule" /> 
    

    Replace those three with:

    <add name="UmbracoModule" type="Umbraco.Web.UmbracoModule,umbraco" /> 
    

    (note that this one has the space before "UmbracoModule" removed, something we later fixed in v6).

    And in < modules> remove:

    <add name=" UmbracoModule" type="Umbraco.Web.UmbracoModule,umbraco" /> 
    <add name="viewstateMoverModule" type="umbraco.presentation.viewstateMoverModule" /> 
    <add name="umbracoBaseRequestModule" type="umbraco.presentation.umbracobase.requestModule" /> 
    

    Replace with:

    <add name="UmbracoModule" type="Umbraco.Web.UmbracoModule,umbraco" /> 
    

    (note that this one has the space before "UmbracoModule" removed, something we later fixed in v6).

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies