Hi guys, how are you?
I’m looking to see if anyone has the same problem as me. After updating Nextcloud, my calendar apps disappeared. I saw something about them not showing up anymore but they were still there, but I don’t think that’s my case. They don’t appear in the client or in the web panel.
I try occ maintenance:mode --off and nothing change
As an additional note, I have it virtualized by VMWARE, within a version of Ubuntu. Everything else is fine, it syncs without problems.
Thank you very much in advance.
jtr
July 30, 2024, 8:23pm
2
Hi @Drakentar :
What install method?
What version?
What do your logs show during the upgrade?
Etc etc.
You seem to have completely skipped filling out the support template so we can’t really be very helpful.
Thank so much for the help, I thought it could be a more generic error, sorry for the lack of information.
I use this guide for the installations
https://docs.nextcloud.com/server/latest/admin_manual/installation/example_ubuntu.html
Now my versión is the Nextcloud Hub 8 (29.0.4)
This is happening since versión 27.
This is the method that i use for the upgrade
sudo service apache2 stop
cd /var/www
sudo mv nextcloud nextcloudOLD
sudo wget https://download.nextcloud.com/server/releases/nextcloud-last.tar.bz2
sudo tar -xjvf nextcloud-last.tar.bz2
sudo mv nextcloudOLD/data nextcloud/data
sudo cp nextcloudOLD/config/config.php nextcloud/config/config.php
sudo chown -R www-data:www-data nextcloud
sudo find nextcloud/ -type d -exec chmod 750 {} \;
sudo find nextcloud/ -type f -exec chmod 640 {} \;
sudo service apache2 start
sudo -u www-data php nextcloud/occ upgrade
Another thing that i see in the logs
{“reqId”:“N1Mcq9ZSMiuWslayFZIi”,“level”:1,“time”:“2023-04-22T02:19:40+00:00”,“remoteAddr”:“”,“user”:“–”,“app”:“updater”,“method”:“”,“url”:“–”,“message”:“\OC\Updater::incompatibleAppDisabled: Disabled incompatible app: calendar”,“userAgent”:“–”,“version”:“22.1.0.1”}
itsme@nextcloud:/var/www/nextcloud$ sudo -u www-data php occ app:list
Enabled:
- activity: 2.21.1
- bruteforcesettings: 2.9.0
- circles: 29.0.0-dev
- cloud_federation_api: 1.12.0
- comments: 1.19.0
- contactsinteraction: 1.10.0
- dashboard: 7.9.0
- dav: 1.30.1
- federatedfilesharing: 1.19.0
- federation: 1.19.0
- files: 2.1.0
- files_downloadlimit: 2.0.0
- files_external: 1.21.0
- files_pdfviewer: 2.10.0
- files_reminders: 1.2.0
- files_sharing: 1.21.0
- files_trashbin: 1.19.0
- files_versions: 1.22.0
- firstrunwizard: 2.18.0
- logreader: 2.14.0
- lookup_server_connector: 1.17.0
- nextcloud_announcements: 1.18.0
- notifications: 2.17.0
- oauth2: 1.17.0
- password_policy: 1.19.0
- photos: 2.5.0
- privacy: 1.13.0
- provisioning_api: 1.19.0
- recommendations: 2.1.0
- related_resources: 1.4.0
- serverinfo: 1.19.0
- settings: 1.12.0
- sharebymail: 1.19.0
- support: 1.12.0
- survey_client: 1.17.0
- suspicious_login: 7.0.0
- systemtags: 1.19.0
- text: 3.10.1
- theming: 2.4.0
- twofactor_backupcodes: 1.18.0
- updatenotification: 1.19.1
- user_status: 1.9.0
- viewer: 2.3.0
- weather_status: 1.9.0
- workflowengine: 2.11.0
Disabled:
- admin_audit: 1.19.0
- encryption: 2.17.0
- twofactor_totp: 11.0.0-dev
- user_ldap: 1.20.0
jtr
August 4, 2024, 2:21pm
4
You are basically doing a manual update. Okay.
In that case, the reason this is occurring is because you’re not addressing your apps when you do the manual upgrade. Please see the full manual upgrade process that is documented and review how it handles apps:
https://docs.nextcloud.com/server/latest/admin_manual/maintenance/manual_upgrade.html
P.S. If you’re going to use the current approach, your life will probably be made easier if you set up two distinct apps paths. One for shipped apps and the other for apps you install (like Calendar):
https://docs.nextcloud.com/server/latest/admin_manual/apps_management.html#using-custom-app-directories
1 Like