Weggo
Weggo

Reputation: 196

ITHit WebDAV - Office not available message showing when Office is installed

We have implemented the IT Hit WebDAV sever on our website and are currently testing it before purchasing.

One of the tests we have done is test it in different browsers and operating systems. We have found that in Vista and the Latest Chrome it shows the message Microsoft Office not available when office is installed and working and the page works in other browser/OS combinations.

We are using the JavaScript from IT Hit which has not been changed. Below is the code (TypeScript Code) I have used on the button:

//Gets an instance of ITHIT DocManager
var oNs = ITHit.WebDAV.Client.DocManager;
if (oNs.IsMicrosoftOfficeAvailable()) {
    oNs.MicrosoftOfficeEditDocument(responseData.documentUrl);
} else {
    editBtn.html(officeNotAvailableLang);
}

Before Clicking Edit Before clicking edit

Office not available error Office not available error

Office is installed on the machine Office is installed

Is this a known issue and can it be fixed?

Upvotes: 1

Views: 269

Answers (1)

IT Hit WebDAV
IT Hit WebDAV

Reputation: 5894

This could be because the Microsoft Office plugin is disabled in your web browser for some reason. To enable the plugin:

  • In case of Google Chrome plugins could be found here: chrome://plugins: enter image description here

  • In case of FireFox they are in Options Menu -> Addons -> Plugins tab: enter image description here

  • In case of IE they are under Tools Menu -> Manage Add-ons. Make sure you select 'All add-ons' in Show dropdown: enter image description here

Upvotes: 1

Related Questions