Enable/Disable Nextcloud Maintenance Mode

nextcloud maintenance mode

Maintenance mode is useful when you are making changes to your nextcloud installation like a software upgrade. To enable maintenance mode, run the command php7.3 occ maintenance:mode –on To disable maintenance mode, run php7.3 occ maintenance:mode –off Example www-data@mail:/www/nextcloud$ php occ maintenance:mode –off Maintenance mode disabled www-data@mail:/www/nextcloud$ See Nextcloud

NextCloud APCu not available for local cache

nextcloud dashboard

When trying to upgrade nextcloud, I get the following error www-data@mail:/www/nextcloud$ php7.3 occ upgrade An unhandled exception has been thrown: OC\HintException: [0]: Memcache \OC\Memcache\APCu not available for local cache (Is the matching PHP module installed and enabled?) www-data@mail:/www/nextcloud$ To fix this, you need to install APC cache. apt install php7.3-apcu For CLI, you need to … Read more

Install Preview Generator in Nextcloud

Nextcloud apps

To enable preview for files in nextcloud, you need to install “Preview Generator” from next cloud app store https://apps.nextcloud.com/apps/previewgenerator To install login to nextcloud as admin. From right drop down menu, click + Apps link. Once on Apps page, you can use the search button on right side to search for “Preview Generator” and install … Read more

Enable SEO url in nextcloud

To enable SEO url in next cloud, first make sure your web server have mod_rewrite module enabled. Edit config.php file vi config/config.php add following ‘overwrite.cli.url’ => ‘https://yourdomain.com/’, ‘htaccess.RewriteBase’ => ‘/’, overwrite.cli.url may already there, in that case, don’t add it again. Now run sudo -u www-data php /var/www/nextcloud/occ maintenance:update:htaccess See NextCloud

nextcloud

NextCloud is a private file storage, share, and sync platform like DropBox. It is a fork of OwnCloud. Both software is OpenSource. NextCloud is available for download from https://nextcloud.com Install NextCloud Desktop client on Ubuntu Enable SEO url in nextcloud Install Preview Generator in Nextcloud Reset NextCloud user password from command line NextCloud APCu not … Read more