搜onlyoffice document server的github上的issue,會得到這2個地址https://github.com/ONLYOFFICE/DocumentServer/issues/67https://github.com/ONLYOFFICE/DocumentServer/i ...
搜onlyoffice document server的github上的issue,會得到這2個地址
https://github.com/ONLYOFFICE/DocumentServer/issues/67
https://github.com/ONLYOFFICE/DocumentServer/issues/40
It's not clear what we can use for free on this new 4.0 version. I run the docker image and the Chat and Comments were there, but I'm not sure one can use it for free. Is the coauthoring still free like in the 3.x version?
Hello,
Yes, the features you describe are totally free.
The difference in document editing between the Enterprise and Free Edition are Mobile Apps which are not included in Free Edition.
Also the difference is in the connections limit - 20 opened documents (sessions) in an Open Source version and 1 conversion thread,
The comparison of ONLYOFFICE Editions is available here
We would like to note that ONLYOFFICE Community Edition is released under an AGPL license, which must be also applied for your product in case of integration or for your code in case of adding some parts.
它說20個編輯連接數,1個轉換線程……一實驗,果然到21個就提示來了,然後其他的只能看,不能編輯了。這有何意思呢,一個公司,隨便幾個文檔同時編輯,就會超過20個人啊,還號稱免費,還是有限制嘛。
於是在它的源碼中尋找突破口……
翻了一下,有server文件夾,有license,config之類,裡面有變數connections,這個變數來自另外一個文件constant……找到之後感覺太簡單了,這樣的限制設置就一個參數,沒有任何加密……
然後再export包中尋找,也有對應的文件夾。save導出包里的文件很複雜,沒有規律,而export包里的文件與docker容器中的一致,極好的。
由於是明碼,以為是源碼,需要編譯後運行,想太複雜了。
7、更改連接數限制
tar -cv constants.js | docker exec -i 6df tar x -C /var/www/onlyoffice/documentserver/server/Common/sources