aus_driver_amazon_s3
aus_driver_amazon_s3 copied to clipboard
Provides a TYPO3 FAL driver for the Amazon Web Service S3
When moving an existing folder via drag-and-drop into another folder, a 500 HTTP error is returned. The folder is moved, though. Stack trace: ``` ErrorException: Warning: Undefined array key "Contents"...
This patch fixes the problem that fetching a folder via API and using that to upload a file put the file into the wrong folder: $folder = $storage->getFolder('myfolder'); $storage->addFile('/tmp/file.txt', $folder,...
Different methods in `AmazonS3Driver` return folder identifiers differently: - `AmazonS3Driver::createFolder` returns identifiers with a slash at the end: `folder/` - `AmazonS3Driver::getFolder` returns identifiers without a slash: `foldername`. - `AmazonS3Driver::getFolderInfoByIdentifier` returns...
…ional.php Record-based storage configuration can be overridden by defining `$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['aus_driver_amazon_s3']['storage']` or `$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['aus_driver_amazon_s3']['storage_X']` (where X is the UID of the storage record) in config/system/additional.php. This makes it possible to use environment...
In reaction to #63 i checked the extension using redis. If redis cache lifetime is overdue, it might report it still "has" an object, but getting it returns "false". Also...
…onsumption. We had the problem that we had a lot of "folders" in an s3 repository on the root level (about 120), each containing a lot fo files. This lead...
Resolves: https://github.com/andersundsehr/aus_driver_amazon_s3/issues/85
When uploading a new file in TYPO3 v11.5.33, most of the times the meta data record has not been created yet when the MetaDataUpdateService is called. This patch creates the...
To be able to run in CLI mode (e.g. refindex update), the following lines should read: CompatibilityService.php:39 ```php return ($GLOBALS['TYPO3_REQUEST'] ?? null) instanceof ServerRequestInterface && ApplicationType::fromRequest($GLOBALS['TYPO3_REQUEST'])->isBackend(); ``` CompatibilityService.php:53 ```php return...
Hi, As far as I can see in #133 the current dev-master should be compatible with TYPO3 v12. Using dev-master also seems to work, but I receive some error messages...