recommendations icon indicating copy to clipboard operation
recommendations copied to clipboard

Recommended files not working as expected after upgrading Nextcloud to 27.1.2

Open michu-pl opened this issue 2 years ago • 0 comments

After the update, clicking on a file on the list of recommended files on the dashboard takes you to the list of files instead of the file as before.

Nextcloud version: 27.1.2 Operating system and version : Debian 11.8 Apache version: 2.4.57 PHP version: 8.1.23

The output of Nextcloud log in Admin > Logging: NO ERRORS

The output of config.php:

<?php
$CONFIG = array (
  'instanceid' => '********',
  'passwordsalt' => '********',
  'secret' => '********',
  'trusted_domains' =>
  array (
    0 => 'nextcloud.local',
    1 => '192.168.0.100',
  ),
  'datadirectory' => '/var/www/nextcloud/data',
  'dbtype' => 'pgsql',
  'version' => '27.1.2.1',
  'overwrite.cli.url' => 'https://nextcloud.local',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'nextcloud',
  'dbpassword' => '********',
  'installed' => true,
  'htaccess.RewriteBase' => '/',
  'mail_smtpmode' => 'smtp',
  'mail_smtpsecure' => 'ssl',
  'mail_sendmailmode' => 'smtp',
  'mail_from_address' => 'nextcloud',
  'mail_domain' => '********',
  'mail_smtpauthtype' => 'PLAIN',
  'mail_smtpauth' => 1,
  'mail_smtphost' => '********',
  'mail_smtpport' => '465',
  'mail_smtpname' => '********',
  'mail_smtppassword' => '********',
  'trashbin_retention_obligation' => 'auto, 30',
  'filelocking.enabled' => 'true',
  'memcache.local' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' =>
  array (
    'host' => '/run/redis/redis-server.sock',
    'port' => 0,
    'dbindex' => 0,
    'password' => '********',
    'timeout' => 1.5,
  ),
  'log_type' => 'file',
  'logfile' => '/var/log/nextcloud/nextcloud.log',
  'loglevel' => 1,
  'logtimezone' => 'Europe/Warsaw',
  'theme' => '',
  'default_phone_region' => 'PL',
  'enable_previews' => true,
  'simpleSignUpLink.shown' => false,
  'skeletondirectory' => '',
  'allow_local_remote_servers' => true,
  'maintenance' => false,
  'versions_retention_obligation' => 'auto, 60',
  'lost_password_link' => 'disabled',
  'auth.bruteforce.protection.enabled' => false,
  'app_install_overwrite' =>
  array (
    0 => 'issuetemplate',
  ),
  'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
);

No errors in nextcloud.log

Thanks! :)

michu-pl avatar Oct 16 '23 11:10 michu-pl