📑 Collabora Online for Nextcloud
Перейти к файлу
Pranav Kant 84dbbafe70 Formatting 2016-09-14 11:48:25 +05:30
appinfo Bump version to 1.1.5 2016-09-01 17:16:40 +02:00
assets remove unused assets 2016-06-26 17:29:46 +02:00
controller Remove unused fields 2016-08-30 13:28:28 +05:30
css Add restore button to the revision history sidebar 2016-07-18 11:11:52 +05:30
img Set app icon 2016-07-22 11:02:53 +02:00
js change id of Apply button, fixes #93, fixes #92 2016-09-12 18:53:54 +02:00
l10n [tx-robot] updated from transifex 2016-08-29 02:34:36 +02:00
lib Formatting 2016-09-14 11:48:25 +05:30
templates Fix error in richdocuments 2016-09-07 13:27:09 +02:00
tests Adjust documentcontrollertest 2016-08-29 15:42:20 +05:30
.gitignore updated .gitignore 2016-07-22 11:17:37 +02:00
.scrutinizer.yml adding scrutinizer.yml 2015-05-04 00:12:43 +02:00
.travis.yml Skip Oracle and hhvm for now 2015-12-21 20:26:52 +03:00
CONTRIBUTING.md Add CONTRIBUTING.md 2015-07-08 21:17:20 +02:00
Makefile get version number from appinfo/info.xml 2016-07-19 11:23:53 +02:00
README.md better README 2016-04-12 13:15:40 +02:00
admin.php Fix appid 2015-12-16 18:04:32 +03:00
owncloud-collabora-online.spec.in set default WOPI Client URL for rpm 2016-04-11 17:23:53 +02:00
personal.php Fix appid 2015-12-16 18:04:32 +03:00
public.php remove unused css 2016-06-26 17:34:02 +02:00
settings.php Fix appid 2015-12-16 18:04:32 +03:00

README.md

richdocuments – ownCloud application to integrate Collabora Online

Installation

make dist

Creates a tarball. The contents should go under owncloud/apps/richdocuments.

rpmbuild -ba -vv owncloud-collabora-online.spec

Creates an RPM package (tested only with openSUSE). The CODE VM uses it.

Memcache is a requirement (tested only with APCu). Install php-apcu, php5-apcu, or whatever this package is called on your Linux distro, and add the following line to owncloud/config/config.php:

'memcache.local' => '\OC\Memcache\APCu',

From command line you can use:

occ config:system:set --value='\OC\Memcache\APCu' memcache.local

You can enable richdocument application from the command line:

occ app:enable richdocuments

You need to configure the WOPI Client URL, which is where the LibreOffice Online WebSocket Daemon (loolwsd) is listening. It is in Admin - Collabora Online section in ownCloud, or you can set it from command line:

occ config:app:set --value='https://<hostname or IP address>:<port>' richdocuments wopi_url

Default port is 9980. If loolwsd was compiled without SSL (like in the CODE VM), you have to write http instead of https. If you use SSL, and you get the following error:

cURL error 60: SSL certificate problem: self signed certificate in certificate chain

You have to add the CA cert manually to ownCloud trusted cert storage:

cat ca-chain.cert.pem >> owncloud/resources/config/ca-bundle.crt