Im using a Minio S3 server in NAS mode (=> no replication, no version, ...).
The upgrade from 22.2.0 to 22.0.3 has broken my configuration.
The S3 API responds to the GetBucketVersionning request (ie. /?versioning" with a code 501: Not implemented.
This case is no more handled by the AmazonS3.php file of NextCloud. A global exception is raised and the file browsing from NextCloud GUI becomes impossible.
As a temporary workaround, I changed locally the code of apps/files_external/lib/Lib/Storage/AmazonS3.php that way
/** !!!!!!!private $versioningEnabled = null; **/
private $versioningEnabled = false;
Im using a Minio S3 server in NAS mode (=> no replication, no version, ...).
The upgrade from 22.2.0 to 22.0.3 has broken my configuration.
The S3 API responds to the GetBucketVersionning request (ie. /?versioning" with a code 501: Not implemented.
This case is no more handled by the AmazonS3.php file of NextCloud. A global exception is raised and the file browsing from NextCloud GUI becomes impossible.
As a temporary workaround, I changed locally the code of apps/files_external/lib/Lib/Storage/AmazonS3.php that way