Uncaught TYPO3 Exception
Argument 1 passed to FluidTYPO3\Flux\Provider\AbstractProvider::getParentFieldName() must be of the type array, bool given, called in /home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php on line 420

TypeError thrown in file
/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/flux/Classes/Provider/AbstractProvider.php in line 392.

27 FluidTYPO3\Flux\Provider\AbstractProvider::getParentFieldName(boolean)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php:
00418:         while (0 < $record[$parentFieldName]) {
00419:             $record = $this->recordService->getSingle($this->getTableName($record), '*', $record[$parentFieldName]);
00420:             $parentFieldName = $this->getParentFieldName($record);
00421:             array_push($records, $record);
00422:         }

26 FluidTYPO3\Fluidpages\Provider\PageProvider::loadRecordTreeFromDatabase(boolean)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php:
00287:     protected function getInheritanceTree(array $row)
00288:     {
00289:         $records = $this->loadRecordTreeFromDatabase($row);
00290:         if (0 === count($records)) {
00291:             return $records;

25 FluidTYPO3\Fluidpages\Provider\PageProvider::getInheritanceTree(array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php:
00332:         $cacheKey = $tableName . $tableFieldName . $row['uid'];
00333:         if (false === isset(self::$cache[$cacheKey])) {
00334:             $tree = $this->getInheritanceTree($row);
00335:             $data = [];
00336:             foreach ($tree as $branch) {

24 FluidTYPO3\Fluidpages\Provider\PageProvider::getInheritedConfiguration(array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php:
00311:     protected function setDefaultValuesInFieldsWithInheritedValues(Form $form, array $row)
00312:     {
00313:         $inheritedConfiguration = $this->getInheritedConfiguration($row);
00314:         foreach ($form->getFields() as $field) {
00315:             $name = $field->getName();

23 FluidTYPO3\Fluidpages\Provider\PageProvider::setDefaultValuesInFieldsWithInheritedValues(FluidTYPO3\Flux\Form, array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php:
00125:         if ($form) {
00126:             $form->setOption(PreviewView::OPTION_PREVIEW, [PreviewView::OPTION_MODE => 'none']);
00127:             $form = $this->setDefaultValuesInFieldsWithInheritedValues($form, $row);
00128:         }
00129:         return $form;

22 FluidTYPO3\Fluidpages\Provider\PageProvider::getForm(array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php:
00224:     {
00225:         $fieldName = $this->getFieldName($row);
00226:         $form = $this->getForm($row);
00227:         $immediateConfiguration = $this->configurationService->convertFlexFormContentToArray(
00228:             $row[$fieldName],

21 FluidTYPO3\Fluidpages\Provider\PageProvider::getFlexFormValuesSingle(array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/fluidpages/Classes/Provider/PageProvider.php:
00212:     public function getFlexFormValues(array $row)
00213:     {
00214:         $immediateConfiguration = $this->getFlexFormValuesSingle($row);
00215:         $inheritedConfiguration = $this->getInheritedConfiguration($row);
00216:         return RecursiveArrayUtility::merge($inheritedConfiguration, $immediateConfiguration);

20 FluidTYPO3\Fluidpages\Provider\PageProvider::getFlexFormValues(array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php:
00107:             $this->settings
00108:         );
00109:         $this->data = $this->provider->getFlexFormValues($row);
00110:     }
00111: 

19 FluidTYPO3\Flux\Controller\AbstractFluxController::initializeSettings()

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php:
00191:     {
00192:         $this->initializeProvider();
00193:         $this->initializeSettings();
00194:         $this->initializeOverriddenSettings();
00195:     }

18 FluidTYPO3\Flux\Controller\AbstractFluxController::initializeAction()

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php:
00163:         $this->initializeActionMethodValidators();
00164:         $this->mvcPropertyMappingConfigurationService->initializePropertyMappingConfigurationFromRequest($request, $this->arguments);
00165:         $this->initializeAction();
00166:         $actionInitializationMethodName = 'initialize' . ucfirst($this->actionMethodName);
00167:         if (method_exists($this, $actionInitializationMethodName)) {

17 TYPO3\CMS\Extbase\Mvc\Controller\ActionController::processRequest(TYPO3\CMS\Extbase\Mvc\Web\Request, TYPO3\CMS\Extbase\Mvc\Web\Response)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php:
00083:             $controller = $this->resolveController($request);
00084:             try {
00085:                 $controller->processRequest($request, $response);
00086:             } catch (\TYPO3\CMS\Extbase\Mvc\Exception\StopActionException $ignoredException) {
00087:             }

16 TYPO3\CMS\Extbase\Mvc\Dispatcher::dispatch(TYPO3\CMS\Extbase\Mvc\Web\Request, TYPO3\CMS\Extbase\Mvc\Web\Response)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php:
00089:         /** @var $response \TYPO3\CMS\Extbase\Mvc\ResponseInterface */
00090:         $response = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\Web\Response::class);
00091:         $this->dispatcher->dispatch($request, $response);
00092:         return $response;
00093:     }

15 TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/extbase/Classes/Core/Bootstrap.php:
00197:         $requestHandler = $requestHandlerResolver->resolveRequestHandler();
00198: 
00199:         $response = $requestHandler->handleRequest();
00200:         // If response is NULL after handling the request we need to stop
00201:         // This happens for instance, when a USER object was converted to a USER_INT

14 TYPO3\CMS\Extbase\Core\Bootstrap::handleRequest()

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/extbase/Classes/Core/Bootstrap.php:
00184:     {
00185:         $this->initialize($configuration);
00186:         return $this->handleRequest();
00187:     }
00188: 

13 TYPO3\CMS\Extbase\Core\Bootstrap::run("", array)
12 call_user_func_array(array, array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
06339:                     ], [
06340:                         $content,
06341:                         $conf
06342:                     ]);
06343:                 } else {

11 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::callUserFunction("TYPO3\CMS\Extbase\Core\Bootstrap->run", array, "")

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php:
00039:             $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
00040:         }
00041:         $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
00042:         if ($this->cObj->doConvertToUserIntObject) {
00043:             $this->cObj->doConvertToUserIntObject = false;

10 TYPO3\CMS\Frontend\ContentObject\UserContentObject::render(array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00818:         // Render content
00819:         try {
00820:             $content .= $contentObject->render($configuration);
00821:         } catch (ContentRenderingException $exception) {
00822:             // Content rendering Exceptions indicate a critical problem which should not be

9 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\UserContentObject, array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00734:                     $contentObject = $this->getContentObject($name);
00735:                     if ($contentObject) {
00736:                         $content .= $this->render($contentObject, $conf);
00737:                     } else {
00738:                         // Call hook functions for extra processing

8 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("USER", array, "5")

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00680:             if ((int)$theKey && strpos($theKey, '.') === false) {
00681:                 $conf = $setup[$theKey . '.'];
00682:                 $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
00683:             }
00684:         }

7 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGet(array)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/Page/PageGenerator.php:
00193:         $timeTracker->incStackPointer();
00194:         $timeTracker->push($tsfe->sPre, 'PAGE');
00195:         $pageContent = $tsfe->cObj->cObjGet($tsfe->pSetup);
00196:         if ($tsfe->pSetup['wrap']) {
00197:             $pageContent = $tsfe->cObj->wrap($pageContent, $tsfe->pSetup['wrap']);

6 TYPO3\CMS\Frontend\Page\PageGenerator::renderContent()

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/Http/RequestHandler.php:
00209:                 $this->controller->preparePageContentGeneration();
00210:                 // Content generation
00211:                 PageGenerator::renderContent();
00212:                 $this->controller->setAbsRefPrefix();
00213:             }

5 TYPO3\CMS\Frontend\Http\RequestHandler::handleRequest(TYPO3\CMS\Core\Http\ServerRequest)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/core/Classes/Core/Bootstrap.php:
00317: 
00318:         // Execute the command which returns a Response object or NULL
00319:         $this->response = $requestHandler->handleRequest($request);
00320:         return $this;
00321:     }

4 TYPO3\CMS\Core\Core\Bootstrap::handleRequest(TYPO3\CMS\Core\Http\ServerRequest)

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Classes/Http/Application.php:
00077:     public function run(callable $execute = null)
00078:     {
00079:         $this->bootstrap->handleRequest(\TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals());
00080: 
00081:         if ($execute !== null) {

3 TYPO3\CMS\Frontend\Http\Application::run()

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Resources/Private/Php/frontend.php:
00021: call_user_func(function () {
00022:     $classLoader = require __DIR__ . '/../../../../../../vendor/autoload.php';
00023:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00024: });

2 {closure}()

/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Resources/Private/Php/frontend.php:
00022:     $classLoader = require __DIR__ . '/../../../../../../vendor/autoload.php';
00023:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00024: });

1 require("/home/httpd/vhosts/belfaux.ch/httpdocs/typo3/sysext/frontend/Resources/Private/Php/frontend.php")

/home/httpd/vhosts/belfaux.ch/httpdocs/index.php:
00001: <?php
00002: 
00003: require __DIR__ . '/typo3/sysext/frontend/Resources/Private/Php/frontend.php';