Actions
Bug #93299
closedTYPO3\CMS\Extbase\Service\ImageService::getImageUri not work correct in backend environment
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2021-01-16
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
10.4.11
Complexity:
Is Regression:
Sprint Focus:
Description
After update to 10.4.11 in backend environment ImageService::getImageUri does not return the correct frontend uri /fileadmin... instead i see like this: /typo3/index.php?route=%2Fimage%2Fprocess&token=6d8f62ca1fda476ab7ad6b664ac1394cadd6d73a&id=19836
Updated by Attila Glück almost 4 years ago
I mean with correct frondend uri /_processed_/...
Updated by Helmut Hummel almost 4 years ago
That is actually expected behavior.
Can you describe your use case?
Updated by Attila Glück almost 4 years ago
I use EXT:external_import and during the import process in BE, i create images for frontend using. Can i somehow become the frontend url too? Thanks for your time Helmut!
Updated by Attila Glück almost 4 years ago
Ok, it is probably better to generate from the template by the first time. You can close the issue, thank you ;)
Updated by Georg Ringer almost 4 years ago
- Status changed from New to Closed
closed as requested
it can also be disabled by using
$context = GeneralUtility::makeInstance(Context::class); $context->setAspect('fileProcessing', new FileProcessingAspect(false));
Actions