OnlyOffice Editor

Can anyone point me in the right direction on where to start looking on what to change to allow document editing with OnlyOffice?

When I click on a .docx file or .xlsx file it opens the OnlyOffice Document Viewer, but I cannot edit anything, even if I make a new file from the WebGUI.

Running Pro 6.1.8
NGINX

write the follwing lines in seahub_settings.py

ONLYOFFICE_FILE_EXTENSION = (‘doc’, ‘docx’, ‘ppt’, ‘pptx’, ‘xls’, ‘xlsx’, ‘odt’, ‘fodt’, ‘odp’, ‘fodp’, ‘ods’, ‘fods’)
ONLYOFFICE_EDIT_FILE_EXTENSION = (‘doc’, ‘docx’, ‘ppt’, ‘pptx’, ‘xls’, ‘xlsx’, ‘odt’, ‘fodt’, ‘odp’, ‘fodp’, ‘ods’, ‘fods’)

restart seafile & seahub
then it might work

1 Like

That worked. The manual directions for using OnlyOffice with a subfolder needs to be updated to reflect this it only shows to add the line:

ONLYOFFICE_FILE_EXTENSION = (‘doc’, ‘docx’, ‘ppt’, ‘pptx’, ‘xls’, ‘xlsx’, ‘odt’, ‘fodt’, ‘odp’, ‘fodp’, ‘ods’, ‘fods’)

Once I add the line:
ONLYOFFICE_EDIT_FILE_EXTENSION = (‘doc’, ‘docx’, ‘ppt’, ‘pptx’, ‘xls’, ‘xlsx’, ‘odt’, ‘fodt’, ‘odp’, ‘fodp’, ‘ods’, ‘fods’)

and restarted the editor began to show up in the GUI.

Thank You @Patrick