Forum Discussion

Matt Coats's avatar
Matt Coats
Iron Contributor
Apr 03, 2017
Solved

Site Contents doesn't load in Chrome

Has anyone else had an issue with SharePoint Site Contents not loading in Chrome lately? All other modern apps work fine, Site Contents seems to be the only page affected in all of my org's SharePoint sites. Nobody's on first release, Chrome's up to date and SharePoint's trusted.

  • I experienced this starting yesterday on both Chrome and Firefox, but not IE. I disabled my ad blocker (uBlock Origin) and the page loaded successfully.

5 Replies

  • taufiquzzaman's avatar
    taufiquzzaman
    Copper Contributor

    Matt Coats 

     

    1. The tenant admin should login to either (XYZ as sample):
    - https://XYZ-admin.sharepoint.com/ and navigate to a classic page in the tenant-admin
    - https://XYZ-admin.sharepoint.com/_layouts/15/online/TenantSettings.aspx
    - https://XYZ-admin.sharepoint.com/_layouts/15/TermStoreManager.aspx

     

    2. Open browser console by F12 or Ctrl+Shift+J (Cmd+Shift+J on Mac) and run a small script to clear corporate catalog.


    The following is the Java Script they need to run from console:

    • var postBody = JSON.stringify({});
      var req = new XMLHttpRequest();
      var digest = document.forms[MSOWebPartPageFormName]["__REQUESTDIGEST"].value
      var serviceUrl = "https://XYZ-admin.sharepoint.com/_api/SP_TenantSettings_Current/ClearCorporateCatalog";
      req.open("POST", serviceUrl, false);
      req.setRequestHeader("Content-Type", "application/json");
      req.setRequestHeader("x-requestdigest", digest);
      req.send(postBody);
  • Matt Coats's avatar
    Matt Coats
    Iron Contributor
    To clarify for anyone else that experiences this issue, it was specifically uBlock that caused the Site Contents loading issue--turning it off for SharePoint resolves the issue. AdBlock doesn't seem to share this problem.
  • I experienced this starting yesterday on both Chrome and Firefox, but not IE. I disabled my ad blocker (uBlock Origin) and the page loaded successfully.

    • Matt Coats's avatar
      Matt Coats
      Iron Contributor

      That was the problem after all--thanks, Scott!

Resources