Nextcloud version (eg, 29.0.5): 29.0.8
Operating system and version (eg, Ubuntu 24.04): Amazon Linux 2
Apache or nginx version (eg, Apache 2.4.25): 2.4.62
PHP version (eg, 8.3): 8.0.3
The issue you are facing:
After updating NC from 24.0.4 to 29.0.8, my external shared links produce a “This operation is not permitted” error. I receive this message using both a share in the data directory and an SMB mount.
I have three VMs running NC behind a proxy. They all use the same NFS mount for /var/www/html and apache configs.
No other changes made outside of the updates.
Is this the first time you’ve seen this error? (Y/N): Y
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'instanceid' => 'xxx',
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'trusted_domains' =>
array (
0 => 'xxx',
1 => 'xxx',
),
'trusted_proxies' =>
array (
0 => 'xxx',
1 => 'xxx',
),
'forwarded_for_headers' =>
array (
0 => 'HTTP_X_FORWARDED_FOR',
1 => 'HTTP_FORWARDED_FOR',
),
'datadirectory' => '/var/www/html/nextcloud/data',
'dbtype' => 'mysql',
'version' => '29.0.8.1',
'overwrite.cli.url' => 'https://xxx',
'dbname' => 'nextcloudcluster',
'dbhost' => 'xxx',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'xxx',
'dbpassword' => 'xxx',
'installed' => true,
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_smtpauthtype' => 'PLAIN',
'mail_smtpauth' => 1,
'mail_smtpsecure' => 'tls',
'mail_from_address' => 'xxx',
'mail_domain' => 'xxx.com',
'mail_smtphost' => 'xxx',
'mail_smtpport' => '587',
'mail_smtpname' => 'xxx',
'mail_smtppassword' => 'xxx',
'ldapIgnoreNamingRules' => false,
'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
'skeletondirectory' => '',
'overwriteprotocol' => 'https',
'htaccess.RewriteBase' => '/',
'maintenance' => false,
'theme' => '',
'loglevel' => 2,
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'xxx',
'port' => 6379,
),
'enable_previews' => false,
'simpleSignUpLink.shown' => false,
'mysql.utf8mb4' => true,
'default_phone_region' => 'US',
);