Nextcloud version: 21.0.0
Operating system and version: Linux 5.10.21-Unraid 6.9.1
nginx version: 2018/08/16
PHP version: 7.4.15
The issue you are facing: I’m trying to input my phone number into the profile page for my user profile and no matter what format I input the phone number in, I get an error that says “Unable to set invalid phone number”. Nothing else is shown in the server logs. This is a brand new install on an Unraid server using the linuxserver Docker image.
Is this the first time you’ve seen this error? Yes
Steps to replicate it:
- Open dashboard in web browser (Chrome).
- Click on profile picture in top right corner and then on “Settings”.
- On “Personal Info” page, input phone number (Formats I tried are 4805554444, 480-555-4444, 14805554444, +14805554444, 1-480-555-4444, 480 555 4444, (480) 555-4444, etc.).
- Get error.
The output of your Nextcloud log in Admin > Logging:
No errors or warnings in log
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'datadirectory' => '/data',
'instanceid' => 'redacted',
'passwordsalt' => '',
'secret' => '',
'trusted_domains' =>
array (
0 => '192.168.1.25',
1 => 'nextcloud.redacteddomain.com',
),
'dbtype' => 'mysql',
'version' => '21.0.0.18',
'overwrite.cli.url' => 'https://nextcloud.redacteddomain.com',
'overwritehost' => 'nextcloud.redacteddomain.com',
'overwriteprotocol' => 'https',
'dbname' => 'nextcloud',
'dbhost' => '192.168.1.21:3306',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => '',
'dbpassword' => '',
'installed' => true,
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'tls',
'mail_sendmailmode' => 'smtp',
'mail_from_address' => '',
'mail_domain' => '',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpauth' => 1,
'mail_smtphost' => 'smtp.mail.me.com',
'mail_smtpport' => '587',
'mail_smtpname' => '',
'mail_smtppassword' => '',
);