Project

General

Profile

Actions

Bug #98174

open

Not processing images when indexing in Solr

Added by Stefan Terborg over 1 year ago. Updated about 1 year ago.

Status:
Needs Feedback
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2022-08-19
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

I have the image processing problem of #93133 in TYPO3 11.5.

When I unset the DeferredBackendImageProcessor with the line

unset($GLOBALS['TYPO3_CONF_VARS']['SYS']['fal']['processors']['DeferredBackendImageProcessor']);

everything works.

TYPO3: 11.5.14
PHP: 8.0.21
ext-solr: 11.5.0-rc-3


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #93133: Not processing images when indexing in SolrClosed2020-12-21

Actions
Actions #1

Updated by Oliver Hader over 1 year ago

  • Related to Bug #93133: Not processing images when indexing in Solr added
Actions #2

Updated by Oliver Hader over 1 year ago

  • Status changed from New to Needs Feedback

How to reproduce this? Does it occur without ext:solr?

Actions #3

Updated by Albert van der Veen over 1 year ago

Oliver Hader wrote in #note-2:

How to reproduce this? Does it occur without ext:solr?

You can reproduce this bij setting up an indexer in TS for solr with a definition for a field to be indexed like this:

image_stringS = FILES
image_stringS {
references {
table = tx_extname_domain_model_project
fieldName = image
}
renderObj = IMG_RESOURCE
renderObj {
file.import.data = file:current:uid
file.treatIdAsReference = 1
file.width = 100
file.height = 100
}
}

Instead of a path to a rendered image, it will generate something like this in the index:
typo3/image/process?token=5be607cb4004796fcb1a7c4aaf83138fcaf44b20&id=544190

Actions #4

Updated by Michael Sollmann about 1 year ago

Can confirm this.

I wrote a scheduler task who sends fluid emails with images (f:uri.image). In TYPO3 11 the image path in these mails changed to something like typo3/image/process?token=5be607cb4004796fcb1a7c4aaf83138fcaf44b20&id=544190 and the images are not visible anymore.
With
unset($GLOBALS['TYPO3_CONF_VARS']['SYS']['fal']['processors']['DeferredBackendImageProcessor']);
I could fix the problem.

Actions

Also available in: Atom PDF