Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ DriverException
case '1364':case '1566':return new NotNullConstraintViolationException($message, $exception);}return new DriverException($message, $exception);}/*** {@inheritdoc}*
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
->
convertException
(line 182)
if ($driverEx instanceof DriverException) {return $driverEx;}if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DeprecatedDriverException) {return $driver->convertException($msg, $driverEx);}return new Exception($msg, 0, $driverEx);}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php
::
wrapException
(line 159)
$msg .= ' with params ' . self::formatParameters($params);}$msg .= ":\n\n" . $driverEx->getMessage();return self::wrapException($driver, $driverEx, $msg);}/*** @deprecated*
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
::
driverExceptionDuringQuery
(line 2226)
$this->throw(Exception::driverExceptionDuringQuery($this->_driver,$e,$sql,$this->resolveParams($params, $types)));}/**
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
handleExceptionDuringQuery
(line 1313)
} else {$stmt = $connection->query($sql);}} catch (Throwable $e) {$this->handleExceptionDuringQuery($e,$sql,$params,$types);}
in
vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php
->
executeQuery
(line 95)
*/public function executeQuery($query, array $params = [], $types = [], QueryCacheProfile $qcp = null){list($query, $params) = $this->normalizeQuery($query, $params);return parent::executeQuery($query, $params, $types, $qcp);}/*** @see \Doctrine\DBAL\Connection::executeUpdate*
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
executeQuery
(line 684)
*/public function fetchAssociative(string $query, array $params = [], array $types = []){try {$stmt = $this->ensureForwardCompatibilityStatement($this->executeQuery($query, $params, $types));return $stmt->fetchAssociative();} catch (Throwable $e) {$this->handleExceptionDuringQuery($e, $query, $params, $types);
in
vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php
->
fetchAssociative
(line 254)
*/public function fetchRow($sql, $params = [], $types = []){$params = $this->prepareParams($params);return $this->fetchAssociative($sql, $params, $types);}/*** Fetches the first column of all SQL result rows as an array.*
in
vendor/pimcore/pimcore/models/Document/Dao.php
->
fetchRow
(line 61)
* @throws Model\Exception\NotFoundException*/public function getByPath($path){$params = $this->extractKeyAndPath($path);$data = $this->db->fetchRow('SELECT id FROM documents WHERE path = :path AND `key` = :key', $params);if (!empty($data['id'])) {$this->assignVariablesToModel($data);} else {// try to find a page with a pretty URL (use the original $path)
in
vendor/pimcore/pimcore/models/Document.php
->
getByPath
(line 231)
$doc = null;try {$helperDoc = new Document();$helperDoc->getDao()->getByPath($path);$doc = static::getById($helperDoc->getId(), $force);\Pimcore\Cache\Runtime::set($cacheKey, $doc);} catch (NotFoundException $e) {$doc = null;}
in
vendor/pimcore/pimcore/lib/Routing/Dynamic/DocumentRouteHandler.php
::
getByPath
(line 144)
/*** {@inheritdoc}*/public function matchRequest(RouteCollection $collection, DynamicRequestContext $context){$document = Document::getByPath($context->getPath());// check for a pretty url inside a siteif (!$document && $this->siteResolver->isSiteRequest($context->getRequest())) {$site = $this->siteResolver->getSite($context->getRequest());
in
vendor/pimcore/pimcore/lib/Routing/DynamicRouteProvider.php
->
matchRequest
(line 78)
if (null !== $sitePath = $this->siteResolver->getSitePath($request)) {$path = $sitePath;}foreach ($this->handlers as $handler) {$handler->matchRequest($collection, new DynamicRequestContext($request, $path, $originalPath));}return $collection;}
in
vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php
->
getRouteCollectionForRequest
(line 140)
/*** {@inheritdoc}*/public function matchRequest(Request $request){$collection = $this->routeProvider->getRouteCollectionForRequest($request);if (!count($collection)) {throw new ResourceNotFoundException();}// Route filters are expected to throw an exception themselves if they
in
vendor/symfony-cmf/routing/src/DynamicRouter.php
->
matchRequest
(line 272)
$matcher = $this->getMatcher();if ($matcher instanceof UrlMatcherInterface) {$defaults = $matcher->match($request->getPathInfo());} else {$defaults = $matcher->matchRequest($request);}return $this->applyRouteEnhancers($defaults, $request);}
in
vendor/symfony-cmf/routing-bundle/src/Routing/DynamicRouter.php
->
matchRequest
(line 72)
return $this->cleanDefaults($defaults);}public function matchRequest(Request $request){$defaults = parent::matchRequest($request);return $this->cleanDefaults($defaults, $request);}/**
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
matchRequest
(line 188)
if ($router instanceof RequestMatcherInterface) {if (null === $requestForMatching) {$requestForMatching = $this->rebuildRequest($pathinfo);}return $router->matchRequest($requestForMatching);}// every router implements the match methodreturn $router->match($pathinfo);} catch (ResourceNotFoundException $e) {
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
doMatch
(line 158)
** Loops through all routes and tries to match the passed request.*/public function matchRequest(Request $request){return $this->doMatch($request->getPathInfo(), $request);}/*** Loops through all routers and tries to match the passed request or url.*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 111)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
$kernel = \Pimcore\Bootstrap::kernel();// reset current request - will be read from request stack from now onTool::setCurrentRequest(null);$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Doctrine\DBAL\Driver\PDO\ Exception
*/final class Exception extends PDOException{public static function new(\PDOException $exception): self{return new self($exception);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
::
new
(line 119)
public function execute($params = null){try {return parent::execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}}/*** {@inheritdoc}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
execute
(line 1304)
[$sql, $params, $types] = SQLParserUtils::expandListParameters($sql, $params, $types);$stmt = $connection->prepare($sql);if ($types) {$this->_bindTypedValues($stmt, $params, $types);$stmt->execute();} else {$stmt->execute($params);}} else {$stmt = $connection->query($sql);
in
vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php
->
executeQuery
(line 95)
*/public function executeQuery($query, array $params = [], $types = [], QueryCacheProfile $qcp = null){list($query, $params) = $this->normalizeQuery($query, $params);return parent::executeQuery($query, $params, $types, $qcp);}/*** @see \Doctrine\DBAL\Connection::executeUpdate*
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
executeQuery
(line 684)
*/public function fetchAssociative(string $query, array $params = [], array $types = []){try {$stmt = $this->ensureForwardCompatibilityStatement($this->executeQuery($query, $params, $types));return $stmt->fetchAssociative();} catch (Throwable $e) {$this->handleExceptionDuringQuery($e, $query, $params, $types);
in
vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php
->
fetchAssociative
(line 254)
*/public function fetchRow($sql, $params = [], $types = []){$params = $this->prepareParams($params);return $this->fetchAssociative($sql, $params, $types);}/*** Fetches the first column of all SQL result rows as an array.*
in
vendor/pimcore/pimcore/models/Document/Dao.php
->
fetchRow
(line 61)
* @throws Model\Exception\NotFoundException*/public function getByPath($path){$params = $this->extractKeyAndPath($path);$data = $this->db->fetchRow('SELECT id FROM documents WHERE path = :path AND `key` = :key', $params);if (!empty($data['id'])) {$this->assignVariablesToModel($data);} else {// try to find a page with a pretty URL (use the original $path)
in
vendor/pimcore/pimcore/models/Document.php
->
getByPath
(line 231)
$doc = null;try {$helperDoc = new Document();$helperDoc->getDao()->getByPath($path);$doc = static::getById($helperDoc->getId(), $force);\Pimcore\Cache\Runtime::set($cacheKey, $doc);} catch (NotFoundException $e) {$doc = null;}
in
vendor/pimcore/pimcore/lib/Routing/Dynamic/DocumentRouteHandler.php
::
getByPath
(line 144)
/*** {@inheritdoc}*/public function matchRequest(RouteCollection $collection, DynamicRequestContext $context){$document = Document::getByPath($context->getPath());// check for a pretty url inside a siteif (!$document && $this->siteResolver->isSiteRequest($context->getRequest())) {$site = $this->siteResolver->getSite($context->getRequest());
in
vendor/pimcore/pimcore/lib/Routing/DynamicRouteProvider.php
->
matchRequest
(line 78)
if (null !== $sitePath = $this->siteResolver->getSitePath($request)) {$path = $sitePath;}foreach ($this->handlers as $handler) {$handler->matchRequest($collection, new DynamicRequestContext($request, $path, $originalPath));}return $collection;}
in
vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php
->
getRouteCollectionForRequest
(line 140)
/*** {@inheritdoc}*/public function matchRequest(Request $request){$collection = $this->routeProvider->getRouteCollectionForRequest($request);if (!count($collection)) {throw new ResourceNotFoundException();}// Route filters are expected to throw an exception themselves if they
in
vendor/symfony-cmf/routing/src/DynamicRouter.php
->
matchRequest
(line 272)
$matcher = $this->getMatcher();if ($matcher instanceof UrlMatcherInterface) {$defaults = $matcher->match($request->getPathInfo());} else {$defaults = $matcher->matchRequest($request);}return $this->applyRouteEnhancers($defaults, $request);}
in
vendor/symfony-cmf/routing-bundle/src/Routing/DynamicRouter.php
->
matchRequest
(line 72)
return $this->cleanDefaults($defaults);}public function matchRequest(Request $request){$defaults = parent::matchRequest($request);return $this->cleanDefaults($defaults, $request);}/**
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
matchRequest
(line 188)
if ($router instanceof RequestMatcherInterface) {if (null === $requestForMatching) {$requestForMatching = $this->rebuildRequest($pathinfo);}return $router->matchRequest($requestForMatching);}// every router implements the match methodreturn $router->match($pathinfo);} catch (ResourceNotFoundException $e) {
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
doMatch
(line 158)
** Loops through all routes and tries to match the passed request.*/public function matchRequest(Request $request){return $this->doMatch($request->getPathInfo(), $request);}/*** Loops through all routers and tries to match the passed request or url.*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 111)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
$kernel = \Pimcore\Bootstrap::kernel();// reset current request - will be read from request stack from now onTool::setCurrentRequest(null);$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
PDOException
*/#[ReturnTypeWillChange]public function execute($params = null){try {return parent::execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php
->
execute
(line 117)
*/#[ReturnTypeWillChange]public function execute($params = null){try {return parent::execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}}
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
execute
(line 1304)
[$sql, $params, $types] = SQLParserUtils::expandListParameters($sql, $params, $types);$stmt = $connection->prepare($sql);if ($types) {$this->_bindTypedValues($stmt, $params, $types);$stmt->execute();} else {$stmt->execute($params);}} else {$stmt = $connection->query($sql);
in
vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php
->
executeQuery
(line 95)
*/public function executeQuery($query, array $params = [], $types = [], QueryCacheProfile $qcp = null){list($query, $params) = $this->normalizeQuery($query, $params);return parent::executeQuery($query, $params, $types, $qcp);}/*** @see \Doctrine\DBAL\Connection::executeUpdate*
in
vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php
->
executeQuery
(line 684)
*/public function fetchAssociative(string $query, array $params = [], array $types = []){try {$stmt = $this->ensureForwardCompatibilityStatement($this->executeQuery($query, $params, $types));return $stmt->fetchAssociative();} catch (Throwable $e) {$this->handleExceptionDuringQuery($e, $query, $params, $types);
in
vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php
->
fetchAssociative
(line 254)
*/public function fetchRow($sql, $params = [], $types = []){$params = $this->prepareParams($params);return $this->fetchAssociative($sql, $params, $types);}/*** Fetches the first column of all SQL result rows as an array.*
in
vendor/pimcore/pimcore/models/Document/Dao.php
->
fetchRow
(line 61)
* @throws Model\Exception\NotFoundException*/public function getByPath($path){$params = $this->extractKeyAndPath($path);$data = $this->db->fetchRow('SELECT id FROM documents WHERE path = :path AND `key` = :key', $params);if (!empty($data['id'])) {$this->assignVariablesToModel($data);} else {// try to find a page with a pretty URL (use the original $path)
in
vendor/pimcore/pimcore/models/Document.php
->
getByPath
(line 231)
$doc = null;try {$helperDoc = new Document();$helperDoc->getDao()->getByPath($path);$doc = static::getById($helperDoc->getId(), $force);\Pimcore\Cache\Runtime::set($cacheKey, $doc);} catch (NotFoundException $e) {$doc = null;}
in
vendor/pimcore/pimcore/lib/Routing/Dynamic/DocumentRouteHandler.php
::
getByPath
(line 144)
/*** {@inheritdoc}*/public function matchRequest(RouteCollection $collection, DynamicRequestContext $context){$document = Document::getByPath($context->getPath());// check for a pretty url inside a siteif (!$document && $this->siteResolver->isSiteRequest($context->getRequest())) {$site = $this->siteResolver->getSite($context->getRequest());
in
vendor/pimcore/pimcore/lib/Routing/DynamicRouteProvider.php
->
matchRequest
(line 78)
if (null !== $sitePath = $this->siteResolver->getSitePath($request)) {$path = $sitePath;}foreach ($this->handlers as $handler) {$handler->matchRequest($collection, new DynamicRequestContext($request, $path, $originalPath));}return $collection;}
in
vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php
->
getRouteCollectionForRequest
(line 140)
/*** {@inheritdoc}*/public function matchRequest(Request $request){$collection = $this->routeProvider->getRouteCollectionForRequest($request);if (!count($collection)) {throw new ResourceNotFoundException();}// Route filters are expected to throw an exception themselves if they
in
vendor/symfony-cmf/routing/src/DynamicRouter.php
->
matchRequest
(line 272)
$matcher = $this->getMatcher();if ($matcher instanceof UrlMatcherInterface) {$defaults = $matcher->match($request->getPathInfo());} else {$defaults = $matcher->matchRequest($request);}return $this->applyRouteEnhancers($defaults, $request);}
in
vendor/symfony-cmf/routing-bundle/src/Routing/DynamicRouter.php
->
matchRequest
(line 72)
return $this->cleanDefaults($defaults);}public function matchRequest(Request $request){$defaults = parent::matchRequest($request);return $this->cleanDefaults($defaults, $request);}/**
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
matchRequest
(line 188)
if ($router instanceof RequestMatcherInterface) {if (null === $requestForMatching) {$requestForMatching = $this->rebuildRequest($pathinfo);}return $router->matchRequest($requestForMatching);}// every router implements the match methodreturn $router->match($pathinfo);} catch (ResourceNotFoundException $e) {
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
doMatch
(line 158)
** Loops through all routes and tries to match the passed request.*/public function matchRequest(Request $request){return $this->doMatch($request->getPathInfo(), $request);}/*** Loops through all routers and tries to match the passed request or url.*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 111)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
$kernel = \Pimcore\Bootstrap::kernel();// reset current request - will be read from request stack from now onTool::setCurrentRequest(null);$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Config\Config::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Document\Editable\Block\BlockStateStack::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Twig\Extension\Templating\Placeholder\AbstractExtension::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Twig\Extension\Templating\Placeholder\AbstractExtension::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Twig\Extension\Templating\Placeholder\AbstractExtension::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Twig\Extension\Templating\Placeholder\AbstractExtension::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Twig\Extension\Templating\Placeholder\AbstractExtension::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Twig\Extension\Templating\Placeholder\AbstractExtension::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Cache\Runtime::offsetSet($index, $value) should either be compatible with ArrayObject::offsetSet(mixed $key, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/cache 5.4: Usage of a DBAL Connection with "Symfony\Component\Cache\Adapter\PdoAdapter" is deprecated and will be removed in symfony 6.0. Use "Symfony\Component\Cache\Adapter\DoctrineDbalAdapter" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/lock 5.4: Usage of a DBAL Connection with "Symfony\Component\Lock\Store\PdoStore" is deprecated and will be removed in symfony 6.0. Use "Symfony\Component\Lock\Store\DoctrineDbalStore" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
Deprecated: Return type of Pimcore\Document\Editable\Block\BlockState::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "66e848"
},
"request_uri": "https://pim.ampm-service.com/_profiler/66e848",
"method": "GET"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | app |
Resolved pimcore context for path /_profiler/66e848 to profiler {
"path": "/_profiler/66e848",
"context": "profiler"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentStackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentStackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\BruteforceProtectionListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\BruteforceProtectionListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentStackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentStackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | init |
Resolved editmode to false {
"editmode": "false",
"params": {
"param": false,
"adminRequest": false,
"user": false
}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\BruteforceProtectionListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\BruteforceProtectionListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session" service and "SessionInterface" alias are deprecated, use "$requestStack->getSession()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-foundation 5.3: The "Symfony\Component\HttpFoundation\Session\Attribute\NamespacedAttributeBag" class is deprecated. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/framework-bundle 5.1: The "session.flash_bag" service is deprecated, use "$session->getFlashBag()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::stopPropagationCheck". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::stopPropagationCheck"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\HardlinkCanonicalListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\HardlinkCanonicalListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentStackListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentStackListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleTagManagerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleTagManagerListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleAnalyticsCodeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleAnalyticsCodeListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentStackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentStackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | init |
Resolved editmode to false {
"editmode": "false",
"params": {
"param": false,
"adminRequest": false,
"user": false
}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\BruteforceProtectionListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\BruteforceProtectionListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::stopPropagationCheck". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::stopPropagationCheck"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\HardlinkCanonicalListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\HardlinkCanonicalListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentStackListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentStackListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleTagManagerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleTagManagerListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleAnalyticsCodeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleAnalyticsCodeListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentStackListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentStackListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.request",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | init |
Resolved editmode to false {
"editmode": "false",
"params": {
"param": false,
"adminRequest": false,
"user": false
}
}
|
| INFO 05:50:08 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. {
"exception": {}
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\BruteforceProtectionListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\BruteforceProtectionListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController". {
"event": "kernel.controller",
"listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 05:50:08 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
Stack Traces 3
|
[3/3]
DriverException
|
|---|
Doctrine\DBAL\Exception\DriverException:
An exception occurred while executing 'SELECT id FROM documents WHERE path = ? AND `key` = ?' with params ["\/", "\xc0"]:
SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8mb3_bin,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation '='
at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:128
at Doctrine\DBAL\Driver\AbstractMySQLDriver->convertException()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:182)
at Doctrine\DBAL\DBALException::wrapException()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:159)
at Doctrine\DBAL\DBALException::driverExceptionDuringQuery()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:2226)
at Doctrine\DBAL\Connection->handleExceptionDuringQuery()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1313)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php:95)
at Pimcore\Db\Connection->executeQuery()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:684)
at Doctrine\DBAL\Connection->fetchAssociative()
(vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php:254)
at Pimcore\Db\Connection->fetchRow()
(vendor/pimcore/pimcore/models/Document/Dao.php:61)
at Pimcore\Model\Document\Dao->getByPath()
(vendor/pimcore/pimcore/models/Document.php:231)
at Pimcore\Model\Document::getByPath()
(vendor/pimcore/pimcore/lib/Routing/Dynamic/DocumentRouteHandler.php:144)
at Pimcore\Routing\Dynamic\DocumentRouteHandler->matchRequest()
(vendor/pimcore/pimcore/lib/Routing/DynamicRouteProvider.php:78)
at Pimcore\Routing\DynamicRouteProvider->getRouteCollectionForRequest()
(vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php:140)
at Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher->matchRequest()
(vendor/symfony-cmf/routing/src/DynamicRouter.php:272)
at Symfony\Cmf\Component\Routing\DynamicRouter->matchRequest()
(vendor/symfony-cmf/routing-bundle/src/Routing/DynamicRouter.php:72)
at Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter->matchRequest()
(vendor/symfony-cmf/routing/src/ChainRouter.php:188)
at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
(vendor/symfony-cmf/routing/src/ChainRouter.php:158)
at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
(vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:139)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(public/index.php:36)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8mb3_bin,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation '='
at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDO/Exception.php:18
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119)
at Doctrine\DBAL\Driver\PDOStatement->execute()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1304)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php:95)
at Pimcore\Db\Connection->executeQuery()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:684)
at Doctrine\DBAL\Connection->fetchAssociative()
(vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php:254)
at Pimcore\Db\Connection->fetchRow()
(vendor/pimcore/pimcore/models/Document/Dao.php:61)
at Pimcore\Model\Document\Dao->getByPath()
(vendor/pimcore/pimcore/models/Document.php:231)
at Pimcore\Model\Document::getByPath()
(vendor/pimcore/pimcore/lib/Routing/Dynamic/DocumentRouteHandler.php:144)
at Pimcore\Routing\Dynamic\DocumentRouteHandler->matchRequest()
(vendor/pimcore/pimcore/lib/Routing/DynamicRouteProvider.php:78)
at Pimcore\Routing\DynamicRouteProvider->getRouteCollectionForRequest()
(vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php:140)
at Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher->matchRequest()
(vendor/symfony-cmf/routing/src/DynamicRouter.php:272)
at Symfony\Cmf\Component\Routing\DynamicRouter->matchRequest()
(vendor/symfony-cmf/routing-bundle/src/Routing/DynamicRouter.php:72)
at Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter->matchRequest()
(vendor/symfony-cmf/routing/src/ChainRouter.php:188)
at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
(vendor/symfony-cmf/routing/src/ChainRouter.php:158)
at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
(vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:139)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(public/index.php:36)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[HY000]: General error: 1267 Illegal mix of collations (utf8mb3_bin,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation '='
at vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117
at PDOStatement->execute()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117)
at Doctrine\DBAL\Driver\PDOStatement->execute()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1304)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php:95)
at Pimcore\Db\Connection->executeQuery()
(vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:684)
at Doctrine\DBAL\Connection->fetchAssociative()
(vendor/pimcore/pimcore/lib/Db/PimcoreExtensionsTrait.php:254)
at Pimcore\Db\Connection->fetchRow()
(vendor/pimcore/pimcore/models/Document/Dao.php:61)
at Pimcore\Model\Document\Dao->getByPath()
(vendor/pimcore/pimcore/models/Document.php:231)
at Pimcore\Model\Document::getByPath()
(vendor/pimcore/pimcore/lib/Routing/Dynamic/DocumentRouteHandler.php:144)
at Pimcore\Routing\Dynamic\DocumentRouteHandler->matchRequest()
(vendor/pimcore/pimcore/lib/Routing/DynamicRouteProvider.php:78)
at Pimcore\Routing\DynamicRouteProvider->getRouteCollectionForRequest()
(vendor/symfony-cmf/routing/src/NestedMatcher/NestedMatcher.php:140)
at Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher->matchRequest()
(vendor/symfony-cmf/routing/src/DynamicRouter.php:272)
at Symfony\Cmf\Component\Routing\DynamicRouter->matchRequest()
(vendor/symfony-cmf/routing-bundle/src/Routing/DynamicRouter.php:72)
at Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter->matchRequest()
(vendor/symfony-cmf/routing/src/ChainRouter.php:188)
at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
(vendor/symfony-cmf/routing/src/ChainRouter.php:158)
at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
(vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:139)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:75)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
at Symfony\Component\HttpKernel\Kernel->handle()
(public/index.php:36)
|