No description
Find a file
2016-04-17 11:56:56 +02:00
appinfo Bump version to 0.15.0 2016-04-17 11:56:56 +02:00
assets Move the expected FFS response to the assets 2014-11-05 18:05:06 +03:00
controller Add ulrsrc attribute when create new documents 2016-04-16 17:41:43 -04:00
css cloudsuite: Add buttons to create new spreadsheet and new presentation. 2015-11-04 21:49:23 +01:00
img adjust app icon to fit new filetype icons 2015-09-03 16:12:19 +02:00
js Add ulrsrc attribute when create new documents 2016-04-16 17:41:43 -04:00
l10n [tx-robot] updated from transifex 2015-10-23 00:43:41 -04:00
lib PHP syntax error on Ubuntu 14.04 LTS 2016-04-05 14:20:05 +02:00
src remove dead code (from Collabora Online perspective) 2016-03-14 23:34:29 +01:00
templates Better wording of the WOPI configuration. 2016-04-12 11:39:16 +02:00
tests internal name: richdocuments, name: Collabora Online, version: 0.9.0 2016-03-15 00:13:55 +01:00
.gitignore Bump version to 0.15.0 2016-04-17 11:56:56 +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
admin.php Fix appid 2015-12-16 18:04:32 +03:00
CONTRIBUTING.md Add CONTRIBUTING.md 2015-07-08 21:17:20 +02:00
Makefile Bump version to 0.15.0 2016-04-17 11:56:56 +02: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 Fix appid 2015-12-16 18:04:32 +03:00
README.md better README 2016-04-12 13:15:40 +02:00
settings.php Fix appid 2015-12-16 18:04:32 +03:00

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