12 questions
Best practices
0
votes
1
replies
54
views
TYPO3: Add HTTP header to response
TYPO3 uses HTTP middlewares to process requests, and responses and their headers are created within those middlewares.
Now I'm deep in a powermail finisher and would like to add additional HTTP ...
0
votes
0
answers
35
views
How can I return executable Javascript from my TYPO3 dashboard chart's data provider?
I'd like to implement line segment styling in a TYPO3 dashboard widget.
My data provider implements TYPO3\CMS\Dashboard\Widgets\ChartDataProviderInterface and provides a getChartData() method which ...
0
votes
0
answers
40
views
Use Form field values in whereClause of SaveToDatabaseFinisher
I have a tx_form to create and edit items of a custom model.
The form itself does not contain any Finisher.
Within typoscript, I add the Finishers.
For the creation I add the SaveToDatabaseFinisher ...
1
vote
2
answers
108
views
How to create a condition with a variable?
Is it possible to do something like that (doesn't work):
[{mysettings.id} in tree.rootLineIds]
@import './TypoScript/'
[END]
Background: I have a Set Set, but want to use it only on specific page-...
1
vote
1
answer
58
views
TYPO3 Fluid: Condition, if a link target is an active page?
I have a TYPO3 Fluid code like this:
<f:if condition="{data.header_link.url}">
<f:then>
<f:link.typolink parameter="{data.header_link}">My Link</f:...
0
votes
1
answer
84
views
Why is my XCLASSes action for the EXT:sf_event_mgt EventController ignored?
I'm trying to add a button that allows users to subscribe to my event calender via a webcall:// link. I use type=9819 to trigger the function.
I can‘t get my icalAction to work, it just gets ignored ...
0
votes
0
answers
40
views
DCE Module Container - add translateable field on parent template
i am struggling to add a title field to a DCE container.
The container works great, the children repeating itself and working.
But i would like a title for the whole module.
So actually 2 options ...
0
votes
1
answer
98
views
$request->getAttribute('fe_user') returns NULL in Typo3 v13
I'm new to TYPO3 v13 and am currently trying to write a small login middleware, really simple at first. But somehow I can't get any further with $request->getAttribute(‘fe_user’). It always returns ...
1
vote
1
answer
206
views
How to use site settings in Page TSConfig?
I'd like to use a setting from my TYPO3 v13.4 site settings in Page TSConfig:
tx_loginlink.fe.loginPage = {$foo.bar}
But apparently that doesn't work. But maybe there is some kind of workaround?
1
vote
2
answers
180
views
TYPO3 v13 GET parameters: how to avoid 404 error
After updating to TYPO3 v13, GET parameters in the URL lead to a 404 error. It seems as if the question mark is ignored and thus, the GET params get handled as being part of the URL.
Example 404 error ...
1
vote
1
answer
151
views
TYPO3 13 custom validation message
I have a question about validation in Extbase:
https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ExtensionArchitecture/Extbase/Reference/Validation/Index.html
I added a simple NotEmpty ...
1
vote
2
answers
182
views
How to setup TYPO3 "Indexed Search" on TYPO3 v13 while the "Crawler" extension is not available?
The official documentation of TYPO3's Indexed Search mentions that the Crawler extension is mandatory for Indexed Search. Unfortunately Crawler is still not available for TYPO3 v13.4.
Is there an ...