You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 20480 bytes) in /var/www/html/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php on line 661
In runs into a endless recursion.
The text was updated successfully, but these errors were encountered:
Hi everyone, and thank you for bringing this to our attention. That's probably a tough one to fix, but we should at least look into it if it's solvable by the extension.
One possible workaround that could work is to enable the somewhat hidden partials feature introduced with #65 and try to use partials for the recursive part. If you set the TYPO3 feature flag fluidComponents.partialsInComponents, you should be able to try this.
So yes, this is a bug, but it's probably complicated to fix. However, any help or ideas are appreciated.
In classic Fluid with sections/partials you can do recursive calls.
Example:
This would print:
But you can't do alike with components.
Given you have a component called
Button
(c:atom.button
) with an impossible condition:Leads to:
In runs into a endless recursion.
The text was updated successfully, but these errors were encountered: