Copied to clipboard

Flag this post as spam?

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


  • Genc Kastrati 86 posts 401 karma points
    Nov 15, 2016 @ 12:53
    Genc Kastrati
    1

    "Sort", "Audit Trail", "Republish entire site" hang/block/no response when clicked from "Do something else"

    Hello everyone. This is a for information post for those that might run into this issue. The folks at Umbraco helped resolve it, big thanks!

    Description of the problem: when trying to sort content inside a node, or when you try to republish the entire site (and maybe other functions under "Do something else"), the CMS just hangs without giving any response. Like below:

    loading indicator goes on and on when trying to "sort"

    Turns out this started after running health check on the CMS and deciding to secure it further by preventing content from being included in an iframe. Which is done via the "X-Frame-Options" custom header in web.config.

    So when this is set to "DENY" instead of "SAMEORIGIN", some of the functions under "Do something else" will stop working.

    Therefore the fix is to use this:

    <location path="umbraco">
    <system.webServer>
      <httpProtocol>
        <customHeaders>
          <remove name="X-Frame-Options" />
          <add name="X-Frame-Options" value="SAMEORIGIN" />
        </customHeaders>
      </httpProtocol>
    </system.webServer>
    

    So here it is! I caused this myself by changing the security settings so thought someone else might run into it too. Thx. Genc

  • Genc Kastrati 86 posts 401 karma points
    May 01, 2017 @ 14:46
    Genc Kastrati
    100

    Turns out this started after running health check on the CMS and deciding to secure it further by preventing content from being included in an iframe. Which is done via the "X-Frame-Options" custom header in web.config. Above post has solution.

Please Sign in or register to post replies

Write your reply to:

Draft