Category Archives: Web

Web : How to disable NextCloud app from CLI

There are many reasons why you’d like to disable an app from the server terminal, such as when an app upgrade went wrong and NextCloud is stuck in the process. Once logged with SSH to your server, do the following : 1. Go to your NextCloud installation folder : cd /path/to/nextcloud Optional : If you… Read More »

Web : Unable to add group in NextCloud v27.0.0

With the latest version 27.0.0 of NextCloud at the time of writing this article, the group add feature from the admin WebUI is broken (adding a group and press the save button does nothing). This is a known bug and should be fixed in version 27.0.1 which should be pubished in the next week(s). In… Read More »

Web : ownCloud 10.8.0 to 10.9.0 upgrade Repair warning: No marketplace connection: Forbidden

Upgrade from ownCloud 10.8.0 to 10.9.0 return the following error : Repair warning: No marketplace connection: Client error response [url] https://marketplace.owncloud.com/api/v1/platform/10.9.0/apps.json [status code] 403 [reason phrase] Forbidden This is a known behavior caused by missing ownCloud Marketplace API key. If no other error has been displayed following your upgrade process, simply do the following steps… Read More »

Web : Unable to upgrade from ownCloud 10.5.0 to 10.6.0 from APT repository

If your ownCloud installation was deployed using the APT repository, you most likely noticed that it no longer update to newer version using the traditional “apt-get update && apt-get upgrade” command after editing the repo version number. This is because ownCloud removed the “owncloud-files” from newer release which was replaced by “owncloud-complete-files”. To upgrade to… Read More »

Linux : ownCloud 10.8.0 Debian 10 repository is not signed

If you attempted to upgrade from ownCloud 10.7.0 to 10.8.0 using the APT repository, you most likely encountered a signature error as followed : Get:11 https://download.owncloud.org/download/repositories/10.8.0/Debian_10 Release [964 B] Get:12 https://download.owncloud.org/download/repositories/10.8.0/Debian_10 Release.gpg [481 B] Ign:12 https://download.owncloud.org/download/repositories/10.8.0/Debian_10 Release.gpg Reading package lists… Done W: GPG error: https://download.owncloud.org/download/repositories/10.8.0/Debian_10 Release: The following signatures were invalid: DDA2C105C4B73A6649AD2BBD47AE7F72479BC94B E: The repository… Read More »

Web: ownCloud Transactional file locking should be configured

Getting the following notice from your ownCloud administrator account setting page? Transactional file locking should be configured ownCloud have the capability of managing file/folder locking on its own, on top of the filesystem. This is a must-have feature especially for large, busy, multi-users servers, and especially when users use their account on multiple devices. You… Read More »

Web : How to password protect a Web directory with htaccess

If for any particular reason you need to password protect a Web directory, on an Apache Web server using htaccess, here are steps below : 1. If not already existing, create a file name “.htaccess” at the root of the folder you want to protect : touch .htaccess 2. Make sure it is readable by… Read More »

Category: Web