SOLVED

Site Contents doesn't load in Chrome

Steel Contributor

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.

5 Replies
No problems here!
best response confirmed by Matt Coats (Steel Contributor)
Solution

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.

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

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.

@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);
1 best response

Accepted Solutions
best response confirmed by Matt Coats (Steel Contributor)
Solution

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.

View solution in original post