Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

If you need help solving this exception, you can have a look at the TYPO3 Documentation. There you can find solutions provided by the TYPO3 community. Once you have found a solution to the problem, help others by contributing to the documentation page.

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1298012500 TYPO3\CMS\Extbase\Mvc\Controller\Exception\RequiredArgumentMissingException

Required argument "hash" is not set for EliasHaeussler\Typo3FormConsent\Controller\ConsentController->approve.

in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 820
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $this->setArgumentValue($argument, $this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
    }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->mapRequestArgumentsToControllerArguments()
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 393
        $callable = [$this, $actionInitializationMethodName];
        if (is_callable($callable)) {
            $callable();
        }
        $this->mapRequestArgumentsToControllerArguments();
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 68
                    1217839467
                );
            }
            $controller = $this->resolveController($request);
            $response = $controller->processRequest($request);
            if ($response instanceof ForwardResponse) {
                // The controller action returned an extbase internal Forward response:
                // Another action should be dispatched.
                $request = static::buildRequestFromCurrentRequestAndForwardResponse($request, $response);
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 168
            }
        }

        // Dispatch the extbase request
        $response = $this->dispatcher->dispatch($extbaseRequest);
        if ($response->getStatusCode() >= 300) {
            // Avoid caching the plugin when we issue a redirect or error response
            // This means that even when an action is configured as cachable
            // we avoid the plugin to be cached, but keep the page cache untouched
at TYPO3\CMS\Extbase\Core\Bootstrap->handleFrontendRequest(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 147
     */
    public function run(string $content, array $configuration, ServerRequestInterface $request): string
    {
        $request = $this->initialize($configuration, $request);
        return $this->handleFrontendRequest($request);
    }

    /**
     * Used for any Extbase Plugin in the Frontend, be sure to run $this->initialize() before.
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('extensionName' => 'FormConsent', 'pluginName' => 'Consent', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 4735
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    if (method_exists($classObj, 'setContentObjectRenderer') && is_callable([$classObj, 'setContentObjectRenderer'])) {
                        $classObj->setContentObjectRenderer($this);
                    }
                    $content = $callable($content, $conf, $this->getRequest()->withAttribute('currentContentObject', $this));
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', LogLevel::ERROR);
                }
            } else {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('extensionName' => 'FormConsent', 'pluginName' => 'Consent', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), '')
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 44
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'] ?? '', $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('extensionName' => 'FormConsent', 'pluginName' => 'Consent', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 695
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('extensionName' => 'FormConsent', 'pluginName' => 'Consent', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 642
        $fullConfigArray = $this->mergeTSRef($fullConfigArray, 'tempKey');
        $contentObject = $this->getContentObject($fullConfigArray['tempKey']);
        $content = '';
        if ($contentObject) {
            $content = $this->render($contentObject, $fullConfigArray['tempKey.']);
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('extensionName' => 'FormConsent', 'pluginName' => 'Consent', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2286
                    if ($contentObjectRendererForNonCacheable instanceof ContentObjectRenderer) {
                        $contentObjectRendererForNonCacheable->setRequest($request);
                        $nonCacheableContent = match ($nonCacheableData[$nonCacheableKey]['type']) {
                            'COA' => $contentObjectRendererForNonCacheable->cObjGetSingle('COA', $nonCacheableData[$nonCacheableKey]['conf']),
                            'FUNC' => $contentObjectRendererForNonCacheable->cObjGetSingle('USER', $nonCacheableData[$nonCacheableKey]['conf']),
                            'POSTUSERFUNC' => $contentObjectRendererForNonCacheable->callUserFunction($nonCacheableData[$nonCacheableKey]['postUserFunc'], $nonCacheableData[$nonCacheableKey]['conf'], $nonCacheableData[$nonCacheableKey]['content']),
                            default => '',
                        };
                    }
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->processNonCacheableContentPartsAndSubstituteContentMarkers(array('INT_SCRIPT.25fd8ddaefbd4431183d9ba8e5cbf79b' => array('conf' => array('extensionName' => 'FormConsent', 'pluginName' => 'Consent', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), 'cObj' => 'O:54:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer":21:{s:12:"stdWrapOrder";a:146:{s:17:"stdWrapPreProcess";s:4:"hook";s:9:"cacheRead";s:4:"hook";s:19:"setContentToCurrent";s:7:"boolean";s:20:"setContentToCurrent.";s:5:"array";s:16:"addPageCacheTags";s:6:"string";s:17:"addPageCacheTags.";s:5:"array";s:10:"setCurrent";s:6:"string";s:11:"setCurrent.";s:5:"array";s:5:"lang.";s:5:"array";s:4:"data";s:7:"getText";s:5:"data.";s:5:"array";s:5:"field";s:9:"fieldName";s:6:"field.";s:5:"array";s:7:"current";s:7:"boolean";s:8:"current.";s:5:"array";s:7:"cObject";s:7:"cObject";s:8:"cObject.";s:5:"array";s:8:"numRows.";s:5:"array";s:11:"preUserFunc";s:12:"functionName";s:15:"stdWrapOverride";s:4:"hook";s:8:"override";s:6:"string";s:9:"override.";s:5:"array";s:17:"preIfEmptyListNum";s:7:"listNum";s:18:"preIfEmptyListNum.";s:5:"array";s:6:"ifNull";s:6:"string";s:7:"ifNull.";s:5:"array";s:7:"ifEmpty";s:6:"string";s:8:"ifEmpty.";s:5:"array";s:7:"ifBlank";s:6:"string";s:8:"ifBlank.";s:5:"array";s:7:"listNum";s:7:"listNum";s:8:"listNum.";s:5:"array";s:4:"trim";s:7:"boolean";s:5:"trim.";s:5:"array";s:7:"strPad.";s:5:"array";s:7:"stdWrap";s:7:"stdWrap";s:8:"stdWrap.";s:5:"array";s:14:"stdWrapProcess";s:4:"hook";s:8:"required";s:7:"boolean";s:9:"required.";s:5:"array";s:3:"if.";s:5:"array";s:13:"fieldRequired";s:9:"fieldName";s:14:"fieldRequired.";s:5:"array";s:6:"csConv";s:6:"string";s:7:"csConv.";s:5:"array";s:9:"parseFunc";s:10:"objectpath";s:10:"parseFunc.";s:5:"array";s:10:"HTMLparser";s:7:"boolean";s:11:"HTMLparser.";s:5:"array";s:6:"split.";s:5:"array";s:12:"replacement.";s:5:"array";s:10:"prioriCalc";s:7:"boolean";s:11:"prioriCalc.";s:5:"array";s:4:"char";s:7:"integer";s:5:"char.";s:5:"array";s:6:"intval";s:7:"boolean";s:7:"intval.";s:5:"array";s:4:"hash";s:6:"string";s:5:"hash.";s:5:"array";s:5:"round";s:7:"boolean";s:6:"round.";s:5:"array";s:13:"numberFormat.";s:5:"array";s:10:"expandList";s:7:"boolean";s:11:"expandList.";s:5:"array";s:4:"date";s:8:"dateconf";s:5:"date.";s:5:"array";s:9:"strtotime";s:13:"strtotimeconf";s:10:"strtotime.";s:5:"array";s:8:"strftime";s:12:"strftimeconf";s:9:"strftime.";s:5:"array";s:13:"formattedDate";s:17:"formattedDateconf";s:14:"formattedDate.";s:5:"array";s:3:"age";s:7:"boolean";s:4:"age.";s:5:"array";s:4:"case";s:4:"case";s:5:"case.";s:5:"array";s:5:"bytes";s:7:"boolean";s:6:"bytes.";s:5:"array";s:9:"substring";s:10:"parameters";s:10:"substring.";s:5:"array";s:8:"cropHTML";s:4:"crop";s:9:"cropHTML.";s:5:"array";s:9:"stripHtml";s:7:"boolean";s:10:"stripHtml.";s:5:"array";s:4:"crop";s:4:"crop";s:5:"crop.";s:5:"array";s:12:"rawUrlEncode";s:7:"boolean";s:13:"rawUrlEncode.";s:5:"array";s:16:"htmlSpecialChars";s:7:"boolean";s:17:"htmlSpecialChars.";s:5:"array";s:24:"encodeForJavaScriptValue";s:7:"boolean";s:25:"encodeForJavaScriptValue.";s:5:"array";s:11:"doubleBrTag";s:6:"string";s:12:"doubleBrTag.";s:5:"array";s:2:"br";s:7:"boolean";s:3:"br.";s:5:"array";s:5:"brTag";s:6:"string";s:6:"brTag.";s:5:"array";s:12:"encapsLines.";s:5:"array";s:8:"keywords";s:7:"boolean";s:9:"keywords.";s:5:"array";s:9:"innerWrap";s:4:"wrap";s:10:"innerWrap.";s:5:"array";s:10:"innerWrap2";s:4:"wrap";s:11:"innerWrap2.";s:5:"array";s:10:"preCObject";s:7:"cObject";s:11:"preCObject.";s:5:"array";s:11:"postCObject";s:7:"cObject";s:12:"postCObject.";s:5:"array";s:9:"wrapAlign";s:5:"align";s:10:"wrapAlign.";s:5:"array";s:9:"typolink.";s:5:"array";s:4:"wrap";s:4:"wrap";s:5:"wrap.";s:5:"array";s:10:"noTrimWrap";s:4:"wrap";s:11:"noTrimWrap.";s:5:"array";s:5:"wrap2";s:4:"wrap";s:6:"wrap2.";s:5:"array";s:8:"dataWrap";s:8:"dataWrap";s:9:"dataWrap.";s:5:"array";s:7:"prepend";s:7:"cObject";s:8:"prepend.";s:5:"array";s:6:"append";s:7:"cObject";s:7:"append.";s:5:"array";s:5:"wrap3";s:4:"wrap";s:6:"wrap3.";s:5:"array";s:14:"orderedStdWrap";s:7:"stdWrap";s:15:"orderedStdWrap.";s:5:"array";s:9:"outerWrap";s:4:"wrap";s:10:"outerWrap.";s:5:"array";s:10:"insertData";s:7:"boolean";s:11:"insertData.";s:5:"array";s:12:"postUserFunc";s:12:"functionName";s:15:"postUserFuncInt";s:12:"functionName";s:13:"prefixComment";s:6:"string";s:14:"prefixComment.";s:5:"array";s:12:"htmlSanitize";s:7:"boolean";s:13:"htmlSanitize.";s:5:"array";s:10:"cacheStore";s:4:"hook";s:18:"stdWrapPostProcess";s:4:"hook";s:5:"debug";s:7:"boolean";s:6:"debug.";s:5:"array";s:9:"debugFunc";s:7:"boolean";s:10:"debugFunc.";s:5:"array";s:9:"debugData";s:7:"boolean";s:10:"debugData.";s:5:"array";}s:4:"data";a:96:{s:3:"uid";i:2065;s:3:"pid";i:671;s:9:"t3ver_oid";i:0;s:8:"t3ver_id";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_label";s:0:"";s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:11:"t3ver_count";i:0;s:12:"t3ver_tstamp";i:0;s:13:"t3ver_move_id";i:0;s:10:"t3_origuid";i:2065;s:6:"tstamp";i:1693384326;s:6:"crdate";i:1693384288;s:9:"cruser_id";i:0;s:6:"hidden";i:0;s:7:"sorting";i:160;s:5:"CType";s:4:"list";s:6:"header";s:0:"";s:8:"bodytext";N;s:5:"image";i:0;s:10:"imagewidth";i:0;s:11:"imageorient";i:0;s:9:"imagecols";i:2;s:11:"imageborder";i:0;s:5:"media";i:0;s:6:"layout";i:0;s:7:"deleted";i:0;s:4:"cols";i:0;s:7:"records";s:0:"";s:5:"pages";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:6:"colPos";i:0;s:9:"subheader";s:0:"";s:8:"fe_group";s:0:"";s:11:"header_link";s:0:"";s:10:"image_zoom";i:0;s:13:"header_layout";s:1:"0";s:9:"list_type";s:19:"formconsent_consent";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:13:"filelink_size";i:0;s:4:"date";i:0;s:9:"recursive";i:0;s:11:"imageheight";i:0;s:16:"sys_language_uid";i:2;s:17:"tx_impexp_origuid";i:0;s:11:"pi_flexform";N;s:11:"l18n_parent";i:2065;s:15:"l18n_diffsource";s:1306:"{"CType":"list","starttime":"0","endtime":"0","categories":"0","l18n_parent":"0","layout":"0","frame_class":"default","space_before_class":"","space_after_class":"","bullets_type":"0","colPos":"0","date":"0","header_layout":"0","header_position":"","imagewidth":"0","imageheight":"0","imageorient":"0","imagecols":"2","cols":"0","recursive":"0","list_type":"formconsent_consent","target":"","sectionIndex":"1","accessibility_title":"","accessibility_bypass_text":"","l18n_diffsource":"","table_class":"","table_delimiter":"124","table_enclosure":"0","table_header_position":"0","table_tfoot":"0","uploads_description":"0","uploads_type":"0","tx_container_parent":"0","t3_origuid":"0","tstamp":"1693383642","crdate":"1693383642","hidden":"0","header":"","bodytext":"","image":"0","imageborder":"0","media":"0","records":"","pages":"","subheader":"","fe_group":"0","header_link":"","image_zoom":"0","linkToTop":"0","filelink_size":"0","sys_language_uid":"0","tx_impexp_origuid":"0","pi_flexform":"","accessibility_bypass":"0","file_collections":"","filelink_sorting":"","selected_categories":"","category_field":"","editlock":"0","rowDescription":"","table_caption":"","assets":"0","l10n_source":"0","filelink_sorting_direction":"","tx_labext_job":"0","tx_labexemotion_slides":"0","tx_news_related_news":"0"}";s:6:"target";s:0:"";s:19:"accessibility_title";s:0:"";s:20:"accessibility_bypass";i:0;s:25:"accessibility_bypass_text";s:0:"";s:16:"file_collections";s:0:"";s:16:"filelink_sorting";s:0:"";s:19:"selected_categories";s:1:"0";s:14:"category_field";s:0:"";s:10:"categories";i:0;s:12:"backupColPos";i:-2;s:30:"tx_gridelements_backend_layout";s:0:"";s:24:"tx_gridelements_children";i:0;s:25:"tx_gridelements_container";i:0;s:23:"tx_gridelements_columns";i:0;s:8:"editlock";i:0;s:14:"rowDescription";N;s:13:"table_caption";N;s:15:"table_delimiter";i:124;s:15:"table_enclosure";i:0;s:21:"table_header_position";i:0;s:11:"table_tfoot";i:0;s:5:"jpfaq";i:0;s:12:"bullets_type";i:0;s:19:"uploads_description";i:0;s:12:"uploads_type";i:0;s:6:"assets";i:0;s:15:"header_position";s:0:"";s:11:"frame_class";s:7:"default";s:11:"spaceBefore";i:0;s:10:"spaceAfter";i:0;s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:11:"l10n_source";i:2065;s:11:"table_class";s:0:"";s:10:"l10n_state";N;s:26:"filelink_sorting_direction";s:0:"";s:11:"tx_mask_job";i:0;s:13:"tx_labext_job";i:0;s:14:"tx_mask_slides";i:0;s:12:"tx_mask_test";N;s:22:"tx_labexemotion_slides";i:0;s:20:"tx_news_related_news";i:0;s:19:"tx_container_parent";i:0;s:24:"news_ttnewsimport_new_id";i:0;s:14:"_LOCALIZED_UID";i:2067;}s:8:"' . "\0" . '*' . "\0" . 'table";s:10:"tt_content";s:10:"parameters";a:0:{}s:13:"currentValKey";s:26:"currentValue_kidjls9dksoje";s:13:"currentRecord";s:15:"tt_content:2065";s:19:"currentRecordNumber";i:0;s:18:"parentRecordNumber";i:0;s:12:"parentRecord";a:2:{s:4:"data";a:96:{s:3:"uid";i:2065;s:3:"pid";i:671;s:9:"t3ver_oid";i:0;s:8:"t3ver_id";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_label";s:0:"";s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:11:"t3ver_count";i:0;s:12:"t3ver_tstamp";i:0;s:13:"t3ver_move_id";i:0;s:10:"t3_origuid";i:2065;s:6:"tstamp";i:1693384326;s:6:"crdate";i:1693384288;s:9:"cruser_id";i:0;s:6:"hidden";i:0;s:7:"sorting";i:160;s:5:"CType";s:4:"list";s:6:"header";s:0:"";s:8:"bodytext";N;s:5:"image";i:0;s:10:"imagewidth";i:0;s:11:"imageorient";i:0;s:9:"imagecols";i:2;s:11:"imageborder";i:0;s:5:"media";i:0;s:6:"layout";i:0;s:7:"deleted";i:0;s:4:"cols";i:0;s:7:"records";s:0:"";s:5:"pages";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:6:"colPos";i:0;s:9:"subheader";s:0:"";s:8:"fe_group";s:0:"";s:11:"header_link";s:0:"";s:10:"image_zoom";i:0;s:13:"header_layout";s:1:"0";s:9:"list_type";s:19:"formconsent_consent";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:13:"filelink_size";i:0;s:4:"date";i:0;s:9:"recursive";i:0;s:11:"imageheight";i:0;s:16:"sys_language_uid";i:2;s:17:"tx_impexp_origuid";i:0;s:11:"pi_flexform";N;s:11:"l18n_parent";i:2065;s:15:"l18n_diffsource";s:1306:"{"CType":"list","starttime":"0","endtime":"0","categories":"0","l18n_parent":"0","layout":"0","frame_class":"default","space_before_class":"","space_after_class":"","bullets_type":"0","colPos":"0","date":"0","header_layout":"0","header_position":"","imagewidth":"0","imageheight":"0","imageorient":"0","imagecols":"2","cols":"0","recursive":"0","list_type":"formconsent_consent","target":"","sectionIndex":"1","accessibility_title":"","accessibility_bypass_text":"","l18n_diffsource":"","table_class":"","table_delimiter":"124","table_enclosure":"0","table_header_position":"0","table_tfoot":"0","uploads_description":"0","uploads_type":"0","tx_container_parent":"0","t3_origuid":"0","tstamp":"1693383642","crdate":"1693383642","hidden":"0","header":"","bodytext":"","image":"0","imageborder":"0","media":"0","records":"","pages":"","subheader":"","fe_group":"0","header_link":"","image_zoom":"0","linkToTop":"0","filelink_size":"0","sys_language_uid":"0","tx_impexp_origuid":"0","pi_flexform":"","accessibility_bypass":"0","file_collections":"","filelink_sorting":"","selected_categories":"","category_field":"","editlock":"0","rowDescription":"","table_caption":"","assets":"0","l10n_source":"0","filelink_sorting_direction":"","tx_labext_job":"0","tx_labexemotion_slides":"0","tx_news_related_news":"0"}";s:6:"target";s:0:"";s:19:"accessibility_title";s:0:"";s:20:"accessibility_bypass";i:0;s:25:"accessibility_bypass_text";s:0:"";s:16:"file_collections";s:0:"";s:16:"filelink_sorting";s:0:"";s:19:"selected_categories";s:1:"0";s:14:"category_field";s:0:"";s:10:"categories";i:0;s:12:"backupColPos";i:-2;s:30:"tx_gridelements_backend_layout";s:0:"";s:24:"tx_gridelements_children";i:0;s:25:"tx_gridelements_container";i:0;s:23:"tx_gridelements_columns";i:0;s:8:"editlock";i:0;s:14:"rowDescription";N;s:13:"table_caption";N;s:15:"table_delimiter";i:124;s:15:"table_enclosure";i:0;s:21:"table_header_position";i:0;s:11:"table_tfoot";i:0;s:5:"jpfaq";i:0;s:12:"bullets_type";i:0;s:19:"uploads_description";i:0;s:12:"uploads_type";i:0;s:6:"assets";i:0;s:15:"header_position";s:0:"";s:11:"frame_class";s:7:"default";s:11:"spaceBefore";i:0;s:10:"spaceAfter";i:0;s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:11:"l10n_source";i:2065;s:11:"table_class";s:0:"";s:10:"l10n_state";N;s:26:"filelink_sorting_direction";s:0:"";s:11:"tx_mask_job";i:0;s:13:"tx_labext_job";i:0;s:14:"tx_mask_slides";i:0;s:12:"tx_mask_test";N;s:22:"tx_labexemotion_slides";i:0;s:20:"tx_news_related_news";i:0;s:19:"tx_container_parent";i:0;s:24:"news_ttnewsimport_new_id";i:0;s:14:"_LOCALIZED_UID";i:2067;}s:13:"currentRecord";s:15:"tt_content:2065";}s:23:"checkPid_badDoktypeList";i:255;s:15:"lastTypoLinkUrl";s:0:"";s:18:"lastTypoLinkTarget";s:0:"";s:14:"lastTypoLinkLD";a:0:{}s:18:"lastTypoLinkResult";N;s:21:"' . "\0" . '*' . "\0" . 'stdWrapHookObjects";a:0:{}s:28:"' . "\0" . '*' . "\0" . 'getImgResourceHookObjects";N;s:24:"doConvertToUserIntObject";b:0;s:17:"' . "\0" . '*' . "\0" . 'userObjectType";i:1;s:16:"' . "\0" . '*' . "\0" . 'stopRendering";a:0:{}s:24:"' . "\0" . '*' . "\0" . 'stdWrapRecursionLevel";i:0;s:32:"' . "\0" . '*' . "\0" . 'defaultFrontendJavaScriptFile";s:60:"EXT:frontend/Resources/Public/JavaScript/default_frontend.js";}', 'type' => 'FUNC'), 'INT_SCRIPT.8224e627eb20145920c2aa89595c123c' => array('conf' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'NsFeedback', 'pluginName' => 'Feedback', 'vendorName' => 'NITSAN', 'controller' => 'Feedback', 'switchableControllerActions.' => array('Feedback.' => array('default')), 'settings.' => array('allPage' => '1', 'quickFeedbackTitle' => 'Was this post helpful?', 'quickboxappearance' => 'slide', 'quickbuttonsYes' => '1', 'quickbuttonsNo' => '1', 'quickbuttonsYesBut' => '1', 'quickbuttonsNoBut' => '', 'quickenable' => '', 'restrictMultipleFeedback' => '1', 'fontstyle' => 'normal', 'fontcolor' => '#000000', 'buttonstyle' => 'rectangle', 'buttonbg' => '#ee8433', 'buttoncolor' => '#ffffff', 'thankyoutitle' => 'Thank you!', 'thankyoumsg' => 'If you feedback requires a response, we\'ll be in touch shortly')), 'cObj' => 'O:54:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer":21:{s:12:"stdWrapOrder";a:146:{s:17:"stdWrapPreProcess";s:4:"hook";s:9:"cacheRead";s:4:"hook";s:19:"setContentToCurrent";s:7:"boolean";s:20:"setContentToCurrent.";s:5:"array";s:16:"addPageCacheTags";s:6:"string";s:17:"addPageCacheTags.";s:5:"array";s:10:"setCurrent";s:6:"string";s:11:"setCurrent.";s:5:"array";s:5:"lang.";s:5:"array";s:4:"data";s:7:"getText";s:5:"data.";s:5:"array";s:5:"field";s:9:"fieldName";s:6:"field.";s:5:"array";s:7:"current";s:7:"boolean";s:8:"current.";s:5:"array";s:7:"cObject";s:7:"cObject";s:8:"cObject.";s:5:"array";s:8:"numRows.";s:5:"array";s:11:"preUserFunc";s:12:"functionName";s:15:"stdWrapOverride";s:4:"hook";s:8:"override";s:6:"string";s:9:"override.";s:5:"array";s:17:"preIfEmptyListNum";s:7:"listNum";s:18:"preIfEmptyListNum.";s:5:"array";s:6:"ifNull";s:6:"string";s:7:"ifNull.";s:5:"array";s:7:"ifEmpty";s:6:"string";s:8:"ifEmpty.";s:5:"array";s:7:"ifBlank";s:6:"string";s:8:"ifBlank.";s:5:"array";s:7:"listNum";s:7:"listNum";s:8:"listNum.";s:5:"array";s:4:"trim";s:7:"boolean";s:5:"trim.";s:5:"array";s:7:"strPad.";s:5:"array";s:7:"stdWrap";s:7:"stdWrap";s:8:"stdWrap.";s:5:"array";s:14:"stdWrapProcess";s:4:"hook";s:8:"required";s:7:"boolean";s:9:"required.";s:5:"array";s:3:"if.";s:5:"array";s:13:"fieldRequired";s:9:"fieldName";s:14:"fieldRequired.";s:5:"array";s:6:"csConv";s:6:"string";s:7:"csConv.";s:5:"array";s:9:"parseFunc";s:10:"objectpath";s:10:"parseFunc.";s:5:"array";s:10:"HTMLparser";s:7:"boolean";s:11:"HTMLparser.";s:5:"array";s:6:"split.";s:5:"array";s:12:"replacement.";s:5:"array";s:10:"prioriCalc";s:7:"boolean";s:11:"prioriCalc.";s:5:"array";s:4:"char";s:7:"integer";s:5:"char.";s:5:"array";s:6:"intval";s:7:"boolean";s:7:"intval.";s:5:"array";s:4:"hash";s:6:"string";s:5:"hash.";s:5:"array";s:5:"round";s:7:"boolean";s:6:"round.";s:5:"array";s:13:"numberFormat.";s:5:"array";s:10:"expandList";s:7:"boolean";s:11:"expandList.";s:5:"array";s:4:"date";s:8:"dateconf";s:5:"date.";s:5:"array";s:9:"strtotime";s:13:"strtotimeconf";s:10:"strtotime.";s:5:"array";s:8:"strftime";s:12:"strftimeconf";s:9:"strftime.";s:5:"array";s:13:"formattedDate";s:17:"formattedDateconf";s:14:"formattedDate.";s:5:"array";s:3:"age";s:7:"boolean";s:4:"age.";s:5:"array";s:4:"case";s:4:"case";s:5:"case.";s:5:"array";s:5:"bytes";s:7:"boolean";s:6:"bytes.";s:5:"array";s:9:"substring";s:10:"parameters";s:10:"substring.";s:5:"array";s:8:"cropHTML";s:4:"crop";s:9:"cropHTML.";s:5:"array";s:9:"stripHtml";s:7:"boolean";s:10:"stripHtml.";s:5:"array";s:4:"crop";s:4:"crop";s:5:"crop.";s:5:"array";s:12:"rawUrlEncode";s:7:"boolean";s:13:"rawUrlEncode.";s:5:"array";s:16:"htmlSpecialChars";s:7:"boolean";s:17:"htmlSpecialChars.";s:5:"array";s:24:"encodeForJavaScriptValue";s:7:"boolean";s:25:"encodeForJavaScriptValue.";s:5:"array";s:11:"doubleBrTag";s:6:"string";s:12:"doubleBrTag.";s:5:"array";s:2:"br";s:7:"boolean";s:3:"br.";s:5:"array";s:5:"brTag";s:6:"string";s:6:"brTag.";s:5:"array";s:12:"encapsLines.";s:5:"array";s:8:"keywords";s:7:"boolean";s:9:"keywords.";s:5:"array";s:9:"innerWrap";s:4:"wrap";s:10:"innerWrap.";s:5:"array";s:10:"innerWrap2";s:4:"wrap";s:11:"innerWrap2.";s:5:"array";s:10:"preCObject";s:7:"cObject";s:11:"preCObject.";s:5:"array";s:11:"postCObject";s:7:"cObject";s:12:"postCObject.";s:5:"array";s:9:"wrapAlign";s:5:"align";s:10:"wrapAlign.";s:5:"array";s:9:"typolink.";s:5:"array";s:4:"wrap";s:4:"wrap";s:5:"wrap.";s:5:"array";s:10:"noTrimWrap";s:4:"wrap";s:11:"noTrimWrap.";s:5:"array";s:5:"wrap2";s:4:"wrap";s:6:"wrap2.";s:5:"array";s:8:"dataWrap";s:8:"dataWrap";s:9:"dataWrap.";s:5:"array";s:7:"prepend";s:7:"cObject";s:8:"prepend.";s:5:"array";s:6:"append";s:7:"cObject";s:7:"append.";s:5:"array";s:5:"wrap3";s:4:"wrap";s:6:"wrap3.";s:5:"array";s:14:"orderedStdWrap";s:7:"stdWrap";s:15:"orderedStdWrap.";s:5:"array";s:9:"outerWrap";s:4:"wrap";s:10:"outerWrap.";s:5:"array";s:10:"insertData";s:7:"boolean";s:11:"insertData.";s:5:"array";s:12:"postUserFunc";s:12:"functionName";s:15:"postUserFuncInt";s:12:"functionName";s:13:"prefixComment";s:6:"string";s:14:"prefixComment.";s:5:"array";s:12:"htmlSanitize";s:7:"boolean";s:13:"htmlSanitize.";s:5:"array";s:10:"cacheStore";s:4:"hook";s:18:"stdWrapPostProcess";s:4:"hook";s:5:"debug";s:7:"boolean";s:6:"debug.";s:5:"array";s:9:"debugFunc";s:7:"boolean";s:10:"debugFunc.";s:5:"array";s:9:"debugData";s:7:"boolean";s:10:"debugData.";s:5:"array";}s:4:"data";a:97:{s:3:"uid";i:671;s:3:"pid";i:164;s:9:"t3ver_oid";i:0;s:8:"t3ver_id";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_label";s:0:"";s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:11:"t3ver_count";i:0;s:12:"t3ver_tstamp";i:0;s:13:"t3ver_move_id";i:0;s:10:"t3_origuid";i:0;s:6:"tstamp";i:1694100548;s:7:"sorting";i:1024;s:7:"deleted";i:0;s:12:"perms_userid";i:14;s:13:"perms_groupid";i:0;s:10:"perms_user";i:31;s:11:"perms_group";i:27;s:15:"perms_everybody";i:0;s:8:"editlock";i:0;s:6:"crdate";i:1693384233;s:9:"cruser_id";i:0;s:6:"hidden";i:0;s:5:"title";s:10:"Newsletter";s:7:"doktype";i:1;s:8:"TSconfig";N;s:11:"is_siteroot";i:0;s:22:"tx_realurl_pathsegment";s:0:"";s:18:"tx_realurl_exclude";i:0;s:23:"tx_realurl_pathoverride";i:0;s:13:"php_tree_stop";i:0;s:17:"tx_impexp_origuid";i:0;s:3:"url";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:8:"fe_group";s:0:"";s:8:"subtitle";s:0:"";s:6:"layout";i:0;s:6:"target";s:0:"";s:5:"media";i:0;s:11:"lastUpdated";i:0;s:8:"keywords";N;s:13:"cache_timeout";i:0;s:8:"newUntil";i:0;s:11:"description";N;s:9:"no_search";i:0;s:15:"SYS_LASTCHANGED";i:1697443946;s:8:"abstract";N;s:6:"module";s:0:"";s:16:"extendToSubpages";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:9:"nav_title";s:0:"";s:8:"nav_hide";i:1;s:16:"content_from_pid";i:0;s:9:"mount_pid";i:0;s:12:"mount_pid_ol";i:0;s:5:"alias";s:0:"";s:8:"l18n_cfg";i:0;s:13:"fe_login_mode";i:0;s:14:"backend_layout";s:0:"";s:25:"backend_layout_next_level";s:0:"";s:10:"cache_tags";s:0:"";s:10:"categories";i:0;s:17:"tsconfig_includes";s:0:"";s:14:"rowDescription";N;s:16:"sys_language_uid";i:2;s:11:"l10n_parent";i:671;s:11:"l10n_source";i:671;s:10:"l10n_state";s:317:"{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent","og_image":"parent","twitter_image":"parent"}";s:15:"l10n_diffsource";s:2094:"{"doktype":"1","slug":"\\/unternehmen\\/aktuelles\\/newsletter\\/newsletter-wilkommen","hidden":"0","starttime":"0","endtime":"0","l10n_parent":"0","categories":"0","l10n_diffsource":"{\\"doktype\\":\\"\\",\\"title\\":\\"\\",\\"slug\\":\\"\\",\\"nav_title\\":\\"\\",\\"subtitle\\":\\"\\",\\"seo_title\\":\\"\\",\\"description\\":\\"\\",\\"no_index\\":\\"\\",\\"no_follow\\":\\"\\",\\"canonical_link\\":\\"\\",\\"sitemap_changefreq\\":\\"\\",\\"sitemap_priority\\":\\"\\",\\"og_title\\":\\"\\",\\"og_description\\":\\"\\",\\"og_image\\":\\"\\",\\"twitter_title\\":\\"\\",\\"twitter_description\\":\\"\\",\\"twitter_image\\":\\"\\",\\"twitter_card\\":\\"\\",\\"abstract\\":\\"\\",\\"keywords\\":\\"\\",\\"author\\":\\"\\",\\"author_email\\":\\"\\",\\"lastUpdated\\":\\"\\",\\"layout\\":\\"\\",\\"newUntil\\":\\"\\",\\"backend_layout\\":\\"\\",\\"backend_layout_next_level\\":\\"\\",\\"content_from_pid\\":\\"\\",\\"target\\":\\"\\",\\"cache_timeout\\":\\"\\",\\"cache_tags\\":\\"\\",\\"is_siteroot\\":\\"\\",\\"no_search\\":\\"\\",\\"php_tree_stop\\":\\"\\",\\"module\\":\\"\\",\\"media\\":\\"\\",\\"tsconfig_includes\\":\\"\\",\\"TSconfig\\":\\"\\",\\"l18n_cfg\\":\\"\\",\\"hidden\\":\\"\\",\\"nav_hide\\":\\"\\",\\"starttime\\":\\"\\",\\"endtime\\":\\"\\",\\"extendToSubpages\\":\\"\\",\\"fe_group\\":\\"\\",\\"editlock\\":\\"\\",\\"categories\\":\\"\\",\\"rowDescription\\":\\"\\"}","layout":"0","lastUpdated":"0","newUntil":"0","cache_timeout":"0","shortcut":"0","shortcut_mode":"0","content_from_pid":"0","mount_pid":"0","module":"","sitemap_priority":"0.5","twitter_card":"summary","t3_origuid":"0","sys_language_uid":"0","l10n_source":"0","title":"Newsletter Wilkommen","nav_hide":"1","url":"","no_search":"0","author":"","author_email":"","media":"0","og_image":"0","twitter_image":"0","TSconfig":"","php_tree_stop":"0","editlock":"0","fe_group":"","extendToSubpages":"0","target":"","cache_tags":"","is_siteroot":"0","mount_pid_ol":"0","l18n_cfg":"0","backend_layout":"","backend_layout_next_level":"","tsconfig_includes":"","no_index":"0","no_follow":"0","nav_title":"","subtitle":"","seo_title":"","description":"","canonical_link":"","sitemap_changefreq":"","og_title":"","og_description":"","twitter_title":"","twitter_description":"","abstract":"","keywords":"","rowDescription":""}";s:4:"slug";s:45:"/presentation/nouveaute/newsletter/newsletter";s:18:"legacy_overlay_uid";i:0;s:16:"tx_kesearch_tags";N;s:20:"tx_kesearch_abstract";N;s:23:"tx_kesearch_resultimage";i:0;s:9:"seo_title";s:0:"";s:8:"no_index";i:0;s:9:"no_follow";i:0;s:8:"og_title";s:0:"";s:14:"og_description";N;s:8:"og_image";i:0;s:13:"twitter_title";s:0:"";s:19:"twitter_description";N;s:13:"twitter_image";i:0;s:14:"canonical_link";s:0:"";s:16:"sitemap_priority";s:3:"0.5";s:18:"sitemap_changefreq";s:0:"";s:12:"twitter_card";s:7:"summary";s:14:"_PAGES_OVERLAY";b:1;s:18:"_PAGES_OVERLAY_UID";i:673;s:23:"_PAGES_OVERLAY_LANGUAGE";i:2;s:32:"_PAGES_OVERLAY_REQUESTEDLANGUAGE";i:2;s:19:"_TRANSLATION_SOURCE";O:26:"TYPO3\\CMS\\Core\\Domain\\Page":3:{s:23:"' . "\0" . '*' . "\0" . 'specialPropertyNames";a:11:{i:0;s:9:"_language";i:1;s:14:"_LOCALIZED_UID";i:2;s:9:"_MP_PARAM";i:3;s:9:"_ORIG_uid";i:4;s:9:"_ORIG_pid";i:5;s:27:"_SHORTCUT_ORIGINAL_PAGE_UID";i:6;s:14:"_PAGES_OVERLAY";i:7;s:18:"_PAGES_OVERLAY_UID";i:8;s:23:"_PAGES_OVERLAY_LANGUAGE";i:9;s:32:"_PAGES_OVERLAY_REQUESTEDLANGUAGE";i:10;s:19:"_TRANSLATION_SOURCE";}s:20:"' . "\0" . '*' . "\0" . 'specialProperties";a:0:{}s:13:"' . "\0" . '*' . "\0" . 'properties";a:92:{s:3:"uid";i:671;s:3:"pid";i:164;s:9:"t3ver_oid";i:0;s:8:"t3ver_id";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_label";s:0:"";s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:11:"t3ver_count";i:0;s:12:"t3ver_tstamp";i:0;s:13:"t3ver_move_id";i:0;s:10:"t3_origuid";i:0;s:6:"tstamp";i:1693377501;s:7:"sorting";i:1024;s:7:"deleted";i:0;s:12:"perms_userid";i:14;s:13:"perms_groupid";i:0;s:10:"perms_user";i:31;s:11:"perms_group";i:27;s:15:"perms_everybody";i:0;s:8:"editlock";i:0;s:6:"crdate";i:1693377485;s:9:"cruser_id";i:0;s:6:"hidden";i:0;s:5:"title";s:20:"Newsletter Wilkommen";s:7:"doktype";i:1;s:8:"TSconfig";N;s:11:"is_siteroot";i:0;s:22:"tx_realurl_pathsegment";s:0:"";s:18:"tx_realurl_exclude";i:0;s:23:"tx_realurl_pathoverride";i:0;s:13:"php_tree_stop";i:0;s:17:"tx_impexp_origuid";i:0;s:3:"url";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:8:"fe_group";s:0:"";s:8:"subtitle";s:0:"";s:6:"layout";i:0;s:6:"target";s:0:"";s:5:"media";i:0;s:11:"lastUpdated";i:0;s:8:"keywords";N;s:13:"cache_timeout";i:0;s:8:"newUntil";i:0;s:11:"description";N;s:9:"no_search";i:0;s:15:"SYS_LASTCHANGED";i:1694702302;s:8:"abstract";N;s:6:"module";s:0:"";s:16:"extendToSubpages";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:9:"nav_title";s:0:"";s:8:"nav_hide";i:1;s:16:"content_from_pid";i:0;s:9:"mount_pid";i:0;s:12:"mount_pid_ol";i:0;s:5:"alias";s:0:"";s:8:"l18n_cfg";i:0;s:13:"fe_login_mode";i:0;s:14:"backend_layout";s:0:"";s:25:"backend_layout_next_level";s:0:"";s:10:"cache_tags";s:0:"";s:10:"categories";i:0;s:17:"tsconfig_includes";N;s:14:"rowDescription";N;s:16:"sys_language_uid";i:0;s:11:"l10n_parent";i:0;s:11:"l10n_source";i:0;s:10:"l10n_state";N;s:15:"l10n_diffsource";s:806:"{"doktype":"","title":"","slug":"","nav_title":"","subtitle":"","seo_title":"","description":"","no_index":"","no_follow":"","canonical_link":"","sitemap_changefreq":"","sitemap_priority":"","og_title":"","og_description":"","og_image":"","twitter_title":"","twitter_description":"","twitter_image":"","twitter_card":"","abstract":"","keywords":"","author":"","author_email":"","lastUpdated":"","layout":"","newUntil":"","backend_layout":"","backend_layout_next_level":"","content_from_pid":"","target":"","cache_timeout":"","cache_tags":"","is_siteroot":"","no_search":"","php_tree_stop":"","module":"","media":"","tsconfig_includes":"","TSconfig":"","l18n_cfg":"","hidden":"","nav_hide":"","starttime":"","endtime":"","extendToSubpages":"","fe_group":"","editlock":"","categories":"","rowDescription":""}";s:4:"slug";s:54:"/unternehmen/aktuelles/newsletter/newsletter-wilkommen";s:18:"legacy_overlay_uid";i:0;s:16:"tx_kesearch_tags";N;s:20:"tx_kesearch_abstract";N;s:23:"tx_kesearch_resultimage";i:0;s:9:"seo_title";s:0:"";s:8:"no_index";i:0;s:9:"no_follow";i:0;s:8:"og_title";s:0:"";s:14:"og_description";N;s:8:"og_image";i:0;s:13:"twitter_title";s:0:"";s:19:"twitter_description";N;s:13:"twitter_image";i:0;s:14:"canonical_link";s:0:"";s:16:"sitemap_priority";s:3:"0.5";s:18:"sitemap_changefreq";s:0:"";s:12:"twitter_card";s:7:"summary";}}}s:8:"' . "\0" . '*' . "\0" . 'table";s:5:"pages";s:10:"parameters";a:0:{}s:13:"currentValKey";s:26:"currentValue_kidjls9dksoje";s:13:"currentRecord";s:9:"pages:671";s:19:"currentRecordNumber";i:0;s:18:"parentRecordNumber";i:0;s:12:"parentRecord";a:0:{}s:23:"checkPid_badDoktypeList";i:255;s:15:"lastTypoLinkUrl";s:0:"";s:18:"lastTypoLinkTarget";s:0:"";s:14:"lastTypoLinkLD";a:0:{}s:18:"lastTypoLinkResult";N;s:21:"' . "\0" . '*' . "\0" . 'stdWrapHookObjects";a:0:{}s:28:"' . "\0" . '*' . "\0" . 'getImgResourceHookObjects";N;s:24:"doConvertToUserIntObject";b:0;s:17:"' . "\0" . '*' . "\0" . 'userObjectType";i:1;s:16:"' . "\0" . '*' . "\0" . 'stopRendering";a:0:{}s:24:"' . "\0" . '*' . "\0" . 'stdWrapRecursionLevel";i:0;s:32:"' . "\0" . '*' . "\0" . 'defaultFrontendJavaScriptFile";s:60:"EXT:frontend/Resources/Public/JavaScript/default_frontend.js";}', 'type' => 'FUNC')), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2247
    protected function recursivelyReplaceIntPlaceholdersInContent(ServerRequestInterface $request)
    {
        do {
            $nonCacheableData = $this->config['INTincScript'];
            $this->processNonCacheableContentPartsAndSubstituteContentMarkers($nonCacheableData, $request);
            // Check if there were new items added to INTincScript during the previous execution:
            // array_diff_assoc throws notices if values are arrays but not strings. We suppress this here.
            $nonCacheableData = @array_diff_assoc($this->config['INTincScript'], $nonCacheableData);
            $reprocess = count($nonCacheableData) > 0;
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->recursivelyReplaceIntPlaceholdersInContent(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2216
            $assetCollectorState = unserialize($this->config['INTincScript_ext']['assetCollectorState'], ['allowed_classes' => false]);
            GeneralUtility::makeInstance(AssetCollector::class)->updateState($assetCollectorState);
        }

        $this->recursivelyReplaceIntPlaceholdersInContent($request);
        $this->getTimeTracker()->push('Substitute header section');
        $this->INTincScript_loadJSCode();
        $this->generatePageTitle();

at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->INTincScript(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 176
                    'prefixWithAbsRefPrefix'
                );
            }
            $this->timeTracker->push('Non-cached objects');
            $controller->INTincScript($request);
            $this->timeTracker->pull();
        }

        // Create a default Response object and add headers and body to it
at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/htdocs/typo3conf/ext/dp_cookieconsent/Classes/Middleware/PlainRenderingMiddleware.php line 30
    {
        $frontendController = $GLOBALS['TSFE'];
        // check for default handling
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::namespace])) {
            return $handler->handle($request);
        }
        // prepare rendering overwrite
        $frontendController->config['config']['debug'] = 0;
        $frontendController->config['config']['disableAllHeaderCode'] = 1;
at DirkPersky\DpCookieconsent\Middleware\PlainRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 42
     * Adds the content length
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            $context = $GLOBALS['TSFE']->getContext();
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 93
                $controller->getPageAccessFailureReasons(PageAccessFailureReasons::INVALID_EXTERNAL_URL)
            );
        }

        return $handler->handle($request);
    }

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 44
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyHeaders.php line 53
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        // return early in case CSP shall not be used
        if (!$this->features->isFeatureEnabled('security.frontend.enforceContentSecurityPolicy')) {
            return $handler->handle($request);
        }
        // make sure, the nonce value is set before processing the remaining middlewares
        $request = $request->withAttribute('nonce', new ConsumableString($this->requestId->nonce->b64));
        $response = $handler->handle($request);
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyHeaders->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 59

        // Set new request which now has the frontend.typoscript attribute
        $GLOBALS['TYPO3_REQUEST'] = $request;

        $response = $handler->handle($request);

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 113
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 90
                $this->context->setAspect('visibility', $newAspect);
            }
        }

        return $handler->handle($request);
    }

    protected function checkIfRootlineRequiresPreview(int $pageId): bool
    {
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreviewPermissions.php line 44
        $pageArguments = $request->getAttribute('routing', null);
        if ($pageArguments instanceof PageArguments && $GLOBALS['BE_USER'] instanceof PreviewUserAuthentication) {
            $GLOBALS['BE_USER']->setWebmounts([$pageArguments->getPageId()]);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreviewPermissions->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 114
            }
        }

        $request = $request->withAttribute('noCache', $this->disableCache);
        return $handler->handle($request);
    }

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 102
        // merge the PageArguments with the request query parameters
        $queryParams = array_replace_recursive($request->getQueryParams(), $pageArguments->getArguments());
        $request = $request->withQueryParams($queryParams);

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 127
            $addInformationAboutDisabledCache = true;
            $setCookieOnCurrentRequest = false;
        }

        $response = $handler->handle($request);

        $tsfe = $this->getTypoScriptFrontendController();
        if ($tsfe instanceof TypoScriptFrontendController && $addInformationAboutDisabledCache) {
            $tsfe->set_no_cache('GET Parameter ADMCMD_prev=LIVE was given', true);
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 64

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyReporter.php line 42
            // @todo create report, then call persist, then dispatch new event
            $this->persistCspReport($scope, $request);
            return new NullResponse();
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyReporter->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 90
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 73
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

        $response = $handler->handle($request);

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 79
                $request = $request->withAttribute('noCache', true);
            }
        }

        $response = $handler->handle($request);

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Middleware/RequestTokenMiddleware.php line 71
            $this->securityAspect->setReceivedRequestToken(false);
            $this->logger->debug('Could not resolve request token', ['exception' => $exception]);
        }

        $response = $handler->handle($request);
        return $this->enrichResponseWithCookie($request, $response);
    }

    protected function resolveNoncePool(ServerRequestInterface $request): NoncePool
at TYPO3\CMS\Core\Middleware\RequestTokenMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 51
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 55
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 49
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 41
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

        return $handler->handle($request);
    }

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 48
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

        $response = $handler->handle($request);

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$57->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 70
     * Invoke the middleware stack
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/AbstractApplication.php line 80

    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/frontend/Classes/Http/Application.php line 59
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/share/labexchange.com/typo3_src-12.4.5/typo3/sysext/core/Classes/Http/AbstractApplication.php line 92
     * Set up the application and shut it down afterwards
     */
    final public function run()
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        $this->sendResponse($response);
    }
}
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /var/www/share/labexchange.com/typo3_src-12.4.5/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /var/www/share/labexchange.com/typo3_src-12.4.5/index.php line 21
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});