Rocket.Chat 7.x 升级后“Workspace in read-only mode”问题完整解决记录(Docker部署 / GFW环境)

本文记录了在中国网络环境中使用 Docker 自托管 Rocket.Chat 升级至 7.x 后,遇到“只读模式”限制的问题。核心原因并非配置错误,而是由于 中国防火墙(GFW)阻断了关键的 DNS 与 API 请求。最终通过 软路由启用全局代理 成功解决,特此记录分享。 🧩 问题现象 升级 Rocket.Chat 到 7.2.0 后,后台出现以下提示: Workspace in read-only mode. Admins can restore full functionality by connecting it to the internet or upgrading to a premium plan. 📖 背景介绍 Rocket.Chat 从 7.0 起更改许可策略: ⚠️ 核心问题并非配置,而是 …

解决Windows系统下网盘同步图标不显示的问题

在Windows系统下同时安装几款同步盘客户端,均设置好文件同步,会发现在文件管理器中不是每个网盘都能显示同步状态。根据个人经验,只有一个网盘能够正常显示。可以通过修改注册表的方式来决定让哪一款网盘显示同步状态。 在开始菜单里找到注册表,打开,定位到 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers 会看到类似于下图的结果 我使用的是Nextcloud客户端,所以有OC开头的项目。如果使用Seafile,则会有包含Seafile的项目。下一步将需要显示同步状态的网盘的项目前置即可。我只保留了Nextcloud的几个项目。如果删除其他项目,建议在删除之前先导出注册表,便于日后恢复调整。

Nextcloud ONLYOFFICE integration app

原文:https://api.onlyoffice.com/editors/nextcloud This app enables users to edit office documents from Nextcloud using ONLYOFFICE Document Server. Currently the following document formats can be edited with this app: csv, docx, pptx, txt, xlsx. The above mentioned formats are also available for viewing together with pdf. The edited files of the corresponding type can be converted into …

Installing Document Server for Docker on a local server

原文:https://helpcenter.onlyoffice.com/server/docker/document/docker-installation.aspx Introduction Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time. Functionality Document Editor Spreadsheet Editor Presentation Editor Documents application for iOS and Android Collaborative editing Hieroglyph …

Error while downloading the document file to be converted

Onlyoffice与Nextcloud集成,在线编缉文件时报错,修改Nextcloud设置: https://help.nextcloud.com/t/error-while-downloading-the-document-file-to-be-converted/70064/5 Nexcloud: config/config.php -> ‘onlyoffice’ => array ( ‘verify_peer_off’ => true, ‘jwt_header’ => “AuthorizationJwt” ) 添加下面的内容即可,注意位置: ‘onlyoffice’ => array ( ‘verify_peer_off’ =>TRUE,

为Onlyoffice添加LetsEncrypt证书

原文:https://stackoverflow.com/questions/50766990/how-to-properly-set-up-https-for-onlyoffice 按照官网建议,生成的证书保存情况如下: /app/onlyoffice/DocumentServer/data/certs# ls dhparam.pem onlyoffice.crt onlyoffice.csr onlyoffice.key 使用LetsEncrypt证书 问题: Also, when copying the created certificates from /etc/letsencrypt/live/[domain] to /app/onlyoffice/DocumentServer/data/certs/, which file between cert.pem, chain.pem, and fullchain.pem becomes onlyoffice.crt? 回答: 1) cert.pem is onlyoffice’s onlyoffice.crt – This is your SSL certificate. 2) privkey.pem is onlyoffice.key – This is your Private Key. 3) You can usually ignore the …