Back to Forum Home Page

You must be a registered user (on-premise or cloud) to add any post. To get access, enter your registered Emaill address below and we will email you the access token. Enter your token along with your email address to add the post. You can use your last received token if you have already generated one.

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 Ranjan

Hi,

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

PortService/ ProtocolInternal in/outExternal inExternal out
80HTTP--
443HTTPS-√*-
4369Erlang--
5432PostgreSQL√**--
5672RabbitMQ√**--
6379Redis√**--
8000DocService--
8080Spellchecker√***--
9000Admin 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 Ranjan

Hi,

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
  • 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