Copied to clipboard

Flag this post as spam?

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


  • Thomas 315 posts 602 karma points c-trib
    Jun 01, 2018 @ 08:52
    Thomas
    0

    Anyone that have tried this? The issue just came out of the blue.

    Haven't touched the page for a while and then this happen. Look like to url where it looks for the files are wrong

    Umbracro error

  • Thomas 315 posts 602 karma points c-trib
    Jun 01, 2018 @ 09:45
    Thomas
    0

    Could it be something with the rewrite rules?

    <rewrite>
      <rules>
        <!-- 
          remove www from all requests and if not https then https it!          
        -->
        <rule name="Remove www" patternSyntax="Wildcard" stopProcessing="true">
          <match url="*" />
          <conditions>
            <add input="{CACHE_URL}" pattern="*://www.*" />
          </conditions>
          <action type="Redirect" url="https://{C:2}" redirectType="Permanent" />
        </rule>
        <rule name="Redirect to http" enabled="true" patternSyntax="Wildcard" stopProcessing="true">
          <match url="*" negate="false" />
          <!-- do nothing if https://-->;
          <conditions logicalGrouping="MatchAny">
            <add input="{HTTPS}" pattern="off" />
          </conditions>
          <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Found" />
        </rule>
        <!--
          enforce https on http requests
        -->
      </rules>
    </rewrite>
    
  • Thomas 315 posts 602 karma points c-trib
    Jun 01, 2018 @ 10:35
    Thomas
    0

    It's an Chrome issue..

  • Dave Woestenborghs 3504 posts 12133 karma points MVP 8x admin c-trib
    Jun 01, 2018 @ 14:21
    Dave Woestenborghs
    100

    This is probably the chrome 66 update. This is issue is known and can be fixed by an upgrade.

    If you are not ready for an upgrade you can do some manual patching.

    See http://issues.umbraco.org/issue/U4-11253 for instructions.

    Dave

Please Sign in or register to post replies

Write your reply to:

Draft