Nextcloud version (eg, 20.0.5): 27.0.1
Operating system and version (eg, Ubuntu 20.04): TrueNAS Scale (kubernetes)
The issue you are facing:
After updating and syncing I’m being told that one file will not sync and that Nextcloud will not follow symlinks or sync ignored files.
Is this the first time you’ve seen this error? (Y/N): Y
Steps to replicate it:
- Try to sync a file named
Borreé in E minor.txt
, removing theé
will allow the file to sync.
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/html/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/html/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
'passwordsalt' => '<redacted>',
'secret' => '<redacted>',
'datadirectory' => '/var/www/html/data',
'dbtype' => 'pgsql',
'version' => '27.0.1.2',
'overwrite.cli.url' => '<redacted>',
'dbname' => 'nextcloud',
'dbhost' => 'nextcloud-cnpg-main-rw',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => '<redacted>',
'installed' => true,
'instanceid' => '<redacted>',
'redis' =>
array (
'host' => 'nextcloud-redis',
'password' => '<redacted>',
'port' => '6379',
),
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'upgrade.disable-web' => true,
'default_phone_region' => 'US',
'share_folder' => 'Shared',
'log_type' => 'file',
'log_type_audit' => 'file',
'loglevel' => '2',
'logfile' => '/var/www/html/data/logs/nextcloud.log',
'logfile_audit' => '/var/www/html/data/logs/audit.log',
'logdateformat' => 'd/m/Y H:i:s',
'logtimezone' => 'America/New_York',
'overwritehost' => '<redacted>',
'overwriteprotocol' => 'https',
'activity_expire_days' => '90',
'trashbin_retention_obligation' => 'auto',
'versions_retention_obligation' => 'auto',
'preview_imaginary_url' => 'http://nextcloud-imaginary:9090',
'enable_previews' => 'true',
'jpeg_quality' => '60',
'preview_max_x' => '2048',
'preview_max_y' => '2048',
'preview_max_memory' => '1024',
'preview_max_filesize_image' => '50',
'onlyoffice' => '',
'maintenance' => false,
'trusted_domains' =>
array (
0 => '127.0.0.1',
1 => 'localhost',
2 => 'nextcloud',
3 => 'nextcloud-*',
4 => 'kube.internal.healthcheck',
5 => 'https',
6 => '<redacted>',
),
'trusted_proxies' =>
array (
0 => '<redacted>',
1 => '<redacted>',
),
'enabledPreviewProviders' =>
array (
0 => 'OC\\Preview\\Imaginary',
1 => 'OC\\Preview\\BMP',
2 => 'OC\\Preview\\GIF',
3 => 'OC\\Preview\\JPEG',
4 => 'OC\\Preview\\Krita',
5 => 'OC\\Preview\\MarkDown',
6 => 'OC\\Preview\\MP3',
7 => 'OC\\Preview\\OpenDocument',
8 => 'OC\\Preview\\PNG',
9 => 'OC\\Preview\\TXT',
10 => 'OC\\Preview\\XBitmap',
11 => 'OC\\Preview\\Photoshop',
12 => 'OC\\Preview\\MSOffice2003',
13 => 'OC\\Preview\\MSOffice2007',
14 => 'OC\\Preview\\MSOfficeDoc',
15 => 'OC\\Preview\\Movie',
16 => 'OC\\Preview\\PDF',
17 => 'OC\\Preview\\SVG',
),
);