Back to Forum Home Page
Forum Topics
- Application Installation19
- FAQs6
- ONLYOFFICE Installation5
- Server Setup4
- Application Errors/Issues4
- FlinkISO API3
- Available Modules2
- Getting Started2
- Custom Forms1
- Other1
- Bug Report0
Q. How to get access to FlinkISO Forum?
Ans:In order to able to post, you must be a registered user either with FlinkISO either On-premise or Cloud. You can login to the forum via using your email address, which you or your administrator used duing the registration on the websile. Once you have the email address, use the same email addres and generate a token. We will send you the token on the same email address. Use that token along with the email address to login. You can read posts without login.
Home > ONLYOFFICE Installation
The document security token is not correctly formed. Please contact your Document Server administrator.
Unable to edit uploaded documents. We are testing this open source application before moving to licensed one.
Regards,
Rati Ranjan
6 days, 22 hours ago | Open | By: Rati RanjanHi,
Please follow the instructions under Application Core.php available on this page:
https://www.flinkiso.com/manual/installation.html
Also, make sure that you have made the necessary changes under ONLYOFFICE section available on the same page.
This error usually is due to incorrect security token. You must copy paste the correct token available in /etc/onlyoffice/documentserver/local.json.
"secret": {
"browser": {
"string": "Copy string from here"
},
And
"request-filtering-agent": {
"allowPrivateIPAddress": true,
"allowMetaIPAddress": true
},
Should be added.
Also, make sure all the required ports are open:
https://helpcenter.onlyoffice.com/docs/installation/docs-enterprise-open-ports.aspx
| Port | Service/ Protocol | Internal in/out | External in | External out |
|---|---|---|---|---|
| 80 | HTTP | - | √ | - |
| 443 | HTTPS | - | √* | - |
| 4369 | Erlang | √ | - | - |
| 5432 | PostgreSQL | √** | - | - |
| 5672 | RabbitMQ | √** | - | - |
| 6379 | Redis | √** | - | - |
| 8000 | DocService | √ | - | - |
| 8080 | Spellchecker | √*** | - | - |
| 9000 | Admin Panel | √ | - | - |
We recommend allowing all the above ports while tesrting the connection.
Hope this helps.
-FlinkISO Help
6 days, 19 hours ago | By: FlinkISO Team
Hi Team,
Still I am facing the same issue. Please check and help me to resolve this.
core.php
// * A random string used in security hashing methods.
Configure::write("Security.salt", "99sharalphanumericrandomstring00000abcdef");
// * A random numeric string (digits only) used to encrypt/decrypt strings.
Configure::write("Security.cipherSeed", "45765678901234567890123456789");
// * A Select correct PHP timezone
date_default_timezone_set("Asia/Kolkata");
// * add ONLYOFFICE secret here
Configure::write("onlyofficesecret","NlHLHqkhO0WGSh960F4G");
// * Add ONLYOFFICE IP ADDRESS
Configure::write("OnlyofficePath", "http://xx.xx.x.xx/web-apps/apps/api/documents/api.js");
Configure::write("OnlyofficeConversionApi", "http://xx.xx.xx.xx"); // ONLYOFFICE IP ADDRESS
// * Change default data format
Configure::write('dateFormat', 'd/m/Y'); // options d-m-Y, dd-mm-YY, d M Y etc
Configure::write('dateTimeFormat', 'd/m/Y H:i:s'); // options d-m-Y, dd-mm-YY, d M Y etc
local.json
"storage": {
"fs": {
"secretString": "NlHLHqkhO0WGSh960F4G"
}
}
}
Regards,
Rati Ranjan
6 days, 18 hours ago | By: Rati RanjanHi,
Please double check your ONLYOFFICE secret. You should copy the secret form the following string and not from the end of the file:
"secret": {
"browser": {
"string": "Copy string from here"
},
Also, check if you can access http://xx.xx.x.xx/web-apps/apps/api/documents/api.js and there are no errors. Make sure all the ports are open and firewall is not restricting any communication. Also check if all the DIR permissions are correct
Step 5: Directory Permissions
Following directories must have full read-write-execute permissions.
- app
- tmp - Recursive
- logs
- sessions
- tests
- cache
- views
- models
- persistent
- Controller
- Model
- View
- webroot
- tmp - Recursive
- lib
- Cake/Cache - Recursive
You can also check http://xx.xx.x.xx/ and see if you can see the ONLYOFFICE welcome page. If yes, follow the instructions on the page to turn on Example server and check if you can open/ edit documents. If NO, then you may want to uninstall ONLYOFFICE and all its dependencies and reinstall and check with new installation.
-FlinkISO Help Team
6 days, 18 hours ago | By: FlinkISO Team