NC 24 files in filesview in web not shown but in android app everything works

Support intro

Sorry to hear you’re facing problems :slightly_frowning_face:

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, 20.0.5): 24.0.5.1
Operating system and version (eg, Ubuntu 20.04): Debian GNU/Linux 11. 5.15.32-v8+ (aarch64) (RPi 4)
Apache or nginx version (eg, Apache 2.4.25): 2.4.54
PHP version (eg, 7.4): 8.1
|NextCloudPi version|v1.50.3|
|NextCloudPi image|NextCloudPi_10-08-21|
The issue you are facing:
Hey i am using nextcloud on a raspberry pi 4 wich boots from external ssd with nextcloudpi. Every night my NAS is connected via webdav and it copies new files to nas as backup. I switched to bidirectional sync some days ago. Afterwards i deleted some files on my NAS. Since then i am facing problems in nextcloud. On my user if click the files tab in nextcloud it shows my last changed files but the list of files an folders is missing. If i click on a folder from the “last changed view” i can get there but getting the error message “Storage is temporarily not available” and the files view gets “mad” (its switching folders very fast an shows the “Storage is temporarily not available” error very often. There is error message or anything else in the nextcloud.log related to this problem. But logging works. If i fake a login with wrong password for example it gets logged. What i can see is an error in the /apache2/nc-error.log:

 (104)Connection reset by peer: [client ***] AH01075: Error dispatching request to :
 [proxy_fcgi:error] [pid 738:tid 547779490176] [client ***:61182] AH01067: Failed to read FastCGI header

I looked this up further in the /var/log/php8.1-fpm.log:

[24-Oct-2022 12:07:18] WARNING: [pool www] child 4773 exited on signal 11 (SIGSEGV) after 72.917020 seconds from start
[24-Oct-2022 12:07:18] NOTICE: [pool www] child 4780 started

there are many of this errors. Very time i get the message “Storage is temporarily not available” this error appears in the log.
I can browse my files in the nextcloud app on android without problems. I tried occ maintenance:repair, occ files:scan.

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 (
  'passwordsalt' => '***',
  'secret' => '***',
  'trusted_domains' =>
  array (
    0 => 'localhost',
    22 => 'nextcloudpi',
    11 => '***',
    1 => '***',
    3 => 'nextcloudpi',
    '' => 'nextcloudpi',
    12 => '***',
    14 => 'nextcloudpi',
  ),
  'datadirectory' => '/var/www/nextcloud/data',
  'dbtype' => 'mysql',
  'version' => '24.0.5.1',
  'overwrite.cli.url' => 'https://nextcloudpi/',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'ncadmin',
  'dbpassword' => '***',
  'memcache.local' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' =>
  array (
    'host' => '/var/run/redis/redis.sock',
    'port' => 0,
    'timeout' => 0.0,
    'password' => '***',
  ),
  'installed' => true,
  'instanceid' => '***',
  'tempdirectory' => '/var/www/nextcloud/data/tmp',
  'mail_smtpmode' => 'smtp',
  'mail_smtpauthtype' => 'LOGIN',
  'mail_from_address' => '***',
  'mail_domain' => '***',
  'preview_max_x' => '2048',
  'preview_max_y' => '2048',
  'jpeg_quality' => '60',
  'overwriteprotocol' => 'https',
  'loglevel' => '2',
  'log_type' => 'file',
  'trusted_proxies' =>
  array (
    11 => '127.0.0.1',
    12 => '::1',
    13 => 'nextcloudpi',
    14 => '***',
  ),
  'theme' => '',
  'maintenance' => false,
  'mail_sendmailmode' => 'smtp',
  'mail_smtpauth' => 1,
  'mail_smtphost' => '***',
  'mail_smtpport' => '587',
  'mail_smtpname' => '***',
  'mail_smtppassword' => '***',
  'default_phone_region' => 'DE',
  'data-fingerprint' => '***',
);

Thanks a lot and kind regards!
Thomas

Hey,
i got it fixed by the following steps:
Thanks to https://forum.directadmin.com/threads/errors-ah01067-failed-to-read-fastcgi-header-ah01075-error-dispatching-request-to.57478/
I set opcache.fast_shutdown=0 /etc/php/8.1/fpm/conf.d/10-opcache.ini
and deleted the opcache chache files under /var/www/nextcloud/data/.opcache and rebootet.
Best regards