Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Import custom GalleryProcessor instead of processor from fluid_… #634

Merged
merged 3 commits into from
Jul 26, 2023

Commits on Jul 25, 2023

  1. [FIX] Import custom GalleryProcessor instead of processor from fluid_…

    …styled_content
    
    I get the following error in TYPO3 v12:
    
    #1427455378 UnexpectedValueException
    Processor class or service name "gallery" does not exist!
    
    This has to do with fluid_styled_content now using identifiers for setting the DataProcessors inside the TypoScript configuration and not the full class name anymore.
    
    The origin of this error seems to be that in your Services.php you register "headless-gallery" as an identifier for "TYPO3\CMS\Frontend\DataProcessing\GalleryProcessor" and not for your custom DataProcessor "FriendsOfTYPO3\Headless\DataProcessing\GalleryProcessor" so the identifier is overridden and the DataProcessing of the regular images stops working.
    parallaxis-mcgoldrick authored Jul 25, 2023
    Configuration menu
    Copy the full SHA
    e00bb35 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f99dd3b View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2023

  1. Configuration menu
    Copy the full SHA
    876945e View commit details
    Browse the repository at this point in the history