SharePoint 2019 excel online files will not load

ChrisEaker 20 Reputation points
2024-05-30T19:28:19.2066667+00:00

Our old certificate recently expired.  I ran the following command on our Office Online server:

New-OfficeWebAppsFarm -InternalUrl "https://spservername.domain.com" -CertificateName "*.newcertificatefriendlyname" -EditingEnabled:$true

  • excel documents would not load so i ran the below code:  

$Farm = Get-SPFarm

$Farm.Poperties.Add("WopiLegacySoapSupport", "https://sharepointserver.domain.com/x/_vti_bin/ExcelServiceInternal.asmx");$Farm.Update();  

after restarting servers. still same result. excel online just loads. never times out but will not load

Microsoft 365 and Office | SharePoint Server | For business
{count} votes

1 answer

Sort by: Most helpful
  1. Emily Du-MSFT 51,861 Reputation points Microsoft External Staff
    2024-05-31T10:07:47.53+00:00

    1.Run this PowerShell Get-OfficeWebAppsMachine to return the health status of your Office Online Server.

    2.Remove all WOPI bindings from SharePoint farm then recreate with PowerShell command.

    Remove-SPWOPIBinding -All:$true

    New-SPWOPIBinding -ServerName <WacServerName> -AllowHTTP

    3.Find clues in the ULS logs.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.