Support intro
Sorry to hear you’re facing problems
help.nextcloud.com is for home/non-enterprise users. If you’re running a business, paid support can be accessed via portal.nextcloud.com where we can ensure your business keeps running smoothly.
In order to help you as quickly as possible, before clicking Create Topic please provide as much of the below as you can. Feel free to use a pastebin service for logs, otherwise either indent short log examples with four spaces:
example
Or for longer, use three backticks above and below the code snippet:
longer
example
here
Some or all of the below information will be requested if it isn’t supplied; for fastest response please provide as much as you can
Nextcloud version (eg, 20.0.5): 27.1.1
Operating system and version (eg, Ubuntu 20.04): Ubuntu 22.04
Apache or nginx version (eg, Apache 2.4.25): Apache 2.4.52
PHP version (eg, 7.4): 8.2.10
The issue you are facing:
I set up login with SSO (SAML2) with Auth0 and from the web browser all is working fine. When using the Android app, however, after a successful login, no files are loaded and the message “Server not available” appears. Tried reinstalling, logging out and back in, nothing worked.
Is this the first time you’ve seen this error? (Y):
Steps to replicate it:
- Set up login with SSO using the official Nextcloud app
- Try to login with the mobile app (Android, don’t have an iOS device to try on)
The output of your Nextcloud log in Admin > Logging:
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'instanceid' => 'REDACTED',
'passwordsalt' => 'REDACTED',
'secret' => 'REDACTED',
'trusted_domains' =>
array (
0 => 'cloud.pcngroup.ch',
),
'datadirectory' => '/var/cloud_data',
'dbtype' => 'mysql',
'version' => '27.1.1.0',
'overwrite.cli.url' => 'https://cloud.pcngroup.ch',
'dbname' => 'cloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'cloud',
'dbpassword' => 'REDACTED',
'installed' => true,
'integrity.check.disabled' => true,
'app_install_overwrite' =>
array (
0 => 'gluusso',
1 => 'discoursesso',
),
);
Output errors in nextcloud.log in /var/www/ or as admin user in top right menu, filtering for errors. Use a pastebin service if necessary.
I think the error lies in the OC\User\NoUserException: Backends provided no user object
.
Thank you in advance for your help!
Niccolò Cavallini