Sharepoint 2019 On-Premise Server Farm Broken (Blank White Screen)

Viewed 2642

I have updated my Sharepoint 2019 Server Farms today (KB5001975), and after the update the documents and site content pages are shows only blank screen,

  • Home.aspx - working,

  • /_layouts/15/viewlsts.aspx - Not working (blank white screen)

  • /Shared%20Documents/Forms/AllItems.aspx - Not working (blank white screen)

  • /SitePages/Forms/ByAuthor.aspx - Not working (blank white screen)

  • /_layouts/15/RecycleBin.aspx - Not working (blank white screen)

    $farm = Get-SPFarm $farm.BuildVersion

    Major - 16 Minor - 0 Build - 10376 Revision - 20001

i have restarted multiple times all the servers (Database server, application search server, central admin server, external facing server) still it shows blank white screen,

Also there is no error and warnings on the upgrade status (/_admin/UpgradeStatus.aspx), still i could not see any content on the site content pages

can i uninstall the updates which is installed recently?

4 Answers

This happened after install sharepoint 2019 updates. Installing patch KB5001974 worked for me

I fixed by installing the patch KB5001974 need to be installed along with the KB5001975

I saw the same - fresh ‘19 install with all Sharepoint updates available through WU - was getting the same blank screens on document lists and content lists.

KB5001974 which is a manual update solved this. The issue doesn’t appear in the list of included fixes for …974 or …975 but seems to have done the trick anyway.

Disabling modern view worked for me https://techcommunity.microsoft.com/t5/microsoft-sharepoint-blog/how-to-disable-the-modern-experience-in-sharepoint-2019/ba-p/303649 as a work-around.

In my case I added an out of the box feature at Sitecollection level.

#Site Collection Level
Add-PSSnapin microsoft.sharepoint.powershell -ea 0
$site = Get-SPSite http://spwfe

#Disable modern Lists and libraries at the Site Collection Level
$featureguid = new-object System.Guid "E3540C7D-6BEA-403C-A224-1A12EAFEE4C4"
$site.Features.Add($featureguid, $true)

#Re-enable the modern experience at the site collection Level.
$featureguid = new-object System.Guid "E3540C7D-6BEA-403C-A224-1A12EAFEE4C4"
$site.Features.Remove($featureguid, $true)
Related