Nextcloud 14.0.3 only work with chromium/chrome, not work with IE/firefox

Support intro

Sorry to hear you’re facing problems :slightly_frowning_face:

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 :heart:

Nextcloud version (eg, 12.0.2): 14.0.3
Operating system and version (eg, Ubuntu 17.04): debian/sid/amd64
Apache or nginx version (eg, Apache 2.4.25): nginx 1.14.0-1
PHP version (eg, 7.1): php-fpm 7.3.0~rc3-1

The issue you are facing:
I noticed my home server only work on chromium, when I use firefox/IE to login via web interface,
I can not see the files (https://imgur.com/a/0JPd9Jd)

When I use chromium/chrome, everything work fine (https://imgur.com/a/q0ny2nl)

Is this the first time you’ve seen this error? (Y/N): Y

Steps to replicate it:

The output of your Nextcloud log in Admin > Logging:

NOTHING in nextcloud.log

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'instanceid' => 'oc7g5XXXX',
  'passwordsalt' => 'XXX-----------------XXX',
  'secret' => 'XXX-----------XXX',
  'trusted_domains' => 
  array (
    0 => 'cloud.domain.com',
  ),
  'datadirectory' => '/www/cloud/data',
  'overwrite.cli.url' => 'https://cloud.domain.com',
  'dbtype' => 'mysql',
  'version' => '14.0.3.0',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'nextcloud',
  'dbpassword' => 'XXX----------------XXX',
  'logtimezone' => 'UTC',
  'installed' => true,
  'auth.bruteforce.protection.enabled' => true,
  'apps_paths' => 
  array (
    0 => 
    array (
      'path' => '/var/www/cloud.domain.com/www/apps',
      'url' => '/apps',
      'writable' => true,
    ),
  ),
  'theme' => '',
  'loglevel' => 3,
  'maintenance' => false,
  'user_backends' => 
  array (
    0 => 
    array (
      'class' => 'OC_User_IMAP',
      'arguments' => 
      array (
        0 => '{domain.com:993/imap/ssl/readonly}INBOX',
      ),
    ),
  ),
  'lost_password_link' => 'disable',
  'log_type' => 'file',
  'logfile' => '/tmp/nextcloud.log',
  'trashbin_retention_obligation' => 'auto, 30',
  'redis' => 
  array (
    'host' => '/var/run/redis/redis.sock',
    'port' => 0,
    'timeout' => 0.0,
    'dbindex' => 2,
  ),
  'filelocking.enabled' => 'true',
  'memcache.local' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'mail_smtpmode' => 'smtp',
  'mail_smtpauthtype' => 'LOGIN',
  'mysql.utf8mb4' => true,
  'mail_smtpauth' => 1,
  'data-fingerprint' => '8c256607260b38fc791356a80905b500',
);

The output of your Apache/nginx/system log in /var/log/____:

NOTHING error/warning in nginx.log

Funny, I found a workaround is, enable debug😁