This plugin enables users to edit office documents within Chamilo using ONLYOFFICE Docs.
You need an instance of ONLYOFFICE Docs (Document Server) that is resolvable and connectable both from Chamilo and any end clients. If that is not the case, use the official ONLYOFFICE Docs documentation page. ONLYOFFICE Docs must also be able to POST to Chamilo directly.
ONLYOFFICE Docs and Chamilo can be installed either on different computers, or on the same machine. If you use one machine, set up a custom port for Document Server as by default both ONLYOFFICE Docs and Chamilo work on port 80.
The easiest way to start an instance of ONLYOFFICE Docs is to use Docker.
Get the latest version of the repository running the command:
git clone https://github.com/ONLYOFFICE/onlyoffice-chamilo cd onlyoffice-chamiloGet a submodule:
git submodule update --init --recursiveCollect all files:
mkdir /tmp/onlyoffice-deploy mkdir /tmp/onlyoffice-deploy/onlyoffice cp -r ./ /tmp/onlyoffice-deploy/onlyoffice cd /tmp/onlyoffice-deploy/onlyoffice rm -rf ./.git* rm -rf */.git*Archive the files obtained in the previous step:
cd ../ zip onlyoffice.zip -r onlyofficeTo start using ONLYOFFICE Docs with Chamilo, the following steps must be performed:
Select the ONLYOFFICE plugin and click the Enable the selected plugins button.
If you want more up-to-date versions of the plugin, you need to replace the pre-installed default plugin folder with the newly collected plugin:
/var/www/html/chamilo-1.11.16/plugin/onlyofficewhere chamilo-1.11.16 is your current Chamilo version.
If your Chamilo version is lower than 1.11.16:
On the Plugins page, find ONLYOFFICE and click Configure. You'll see the Settings page. Enable the plugin and specify ONLYOFFICE Docs address:
https://<documentserver>/where the documentserver is the name of the server with ONLYOFFICE Docs installed. The address must be accessible from the user browser and from the Chamilo server. The Chamilo server address must also be accessible from ONLYOFFICE Docs for correct work.
Starting from version 7.2, JWT is enabled by default and the secret key is generated automatically to restrict the access to ONLYOFFICE Docs and for security reasons and data integrity. Specify your own Secret key on the Chamilo Settings page. In the ONLYOFFICE Docs config file, specify the same secret key and enable the validation.
The ONLYOFFICE integration follows the API documented here.
The request is sent to /plugin/onlyoffice/editor.php?docId="document identificator". The server processes the request, generates the editor initialization configuration with the following properties:
Download the Chamilo ONLYOFFICE integration plugin here.