Forum Discussion
Matt Coats
Apr 03, 2017Iron Contributor
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 SharePoin...
- Apr 04, 2017
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.
taufiquzzaman
Mar 18, 2020Copper Contributor
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);