Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
if ($referer = $request->headers->get('referer')) {
$message .= sprintf(' (from "%s")', $referer);
}
throw new NotFoundHttpException($message, $e);
} catch (MethodNotAllowedException $e) {
$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
}
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
->
onKernelRequest
(line 57)
$request = $event->getRequest();
// This call is required in all cases, because the default router needs our webspace information
// Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
$this->requestAnalyzer->analyze($request);
$this->baseRouteListener->onKernelRequest($event);
if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {
$this->requestAnalyzer->validate($request);
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(line 270)
$closure = static function (...$args) use (&$listener, &$closure) {
if ($listener[0] instanceof \Closure) {
$listener[0] = $listener[0]();
$listener[1] = $listener[1] ?? '__invoke';
}
($closure = \Closure::fromCallable($listener))(...$args);
};
} else {
$closure = $listener instanceof \Closure || $listener instanceof WrappedListener ? $listener : \Closure::fromCallable($listener);
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
::
Symfony\Component\EventDispatcher\{closure}
(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/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;
}
}
// When using the HttpCache, you need to call the method in your front controller
// instead of relying on the configuration parameter
// https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Symfony\Component\Routing\Exception\ ResourceNotFoundException
in
vendor/symfony-cmf/routing/src/ChainRouter.php
(line 210)
$info = $request
? "this request\n$request"
: "url '$pathinfo'";
throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
}
/**
* {@inheritdoc}
*
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 first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
if (null !== $this->logger) {
in
vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php
->
onKernelRequest
(line 57)
$request = $event->getRequest();
// This call is required in all cases, because the default router needs our webspace information
// Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
$this->requestAnalyzer->analyze($request);
$this->baseRouteListener->onKernelRequest($event);
if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZER, true)) {
$this->requestAnalyzer->validate($request);
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
onKernelRequest
(line 270)
$closure = static function (...$args) use (&$listener, &$closure) {
if ($listener[0] instanceof \Closure) {
$listener[0] = $listener[0]();
$listener[1] = $listener[1] ?? '__invoke';
}
($closure = \Closure::fromCallable($listener))(...$args);
};
} else {
$closure = $listener instanceof \Closure || $listener instanceof WrappedListener ? $listener : \Closure::fromCallable($listener);
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
::
Symfony\Component\EventDispatcher\{closure}
(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/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;
}
}
// When using the HttpCache, you need to call the method in your front controller
// instead of relying on the configuration parameter
// https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 16:49:06 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::registerBundles()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Kernel::getContainerClass()" might add "string" as a native return type declaration in the future. Do the same in child class "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getCacheDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getLogDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Kernel::getKernelParameters()" might add "array" as a native return type declaration in the future. Do the same in child class "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "FOS\HttpCache\SymfonyCache\HttpCacheProvider::getHttpCache()" might add "?HttpKernelInterface" as a native return type declaration in the future. Do the same in implementation "App\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
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 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getSession()" might add "SessionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getLockManager()" might add "LockManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getQueryManager()" might add "QueryManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getTransactionManager()" might add "UserTransactionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getNamespaceRegistry()" might add "NamespaceRegistryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getNodeTypeManager()" might add "NodeTypeManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getObservationManager()" might add "ObservationManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getRepositoryManager()" might add "RepositoryManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getVersionManager()" might add "VersionManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\WorkspaceInterface::getAccessibleWorkspaceNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getPrefixes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getURIs()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getURI()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getPrefix()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getNamespaces()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::hasNodeType()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getAllNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getPrimaryNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getMixinNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createNodeTypeTemplate()" might add "NodeTypeTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createNodeDefinitionTemplate()" might add "NodeDefinitionTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createPropertyDefinitionTemplate()" might add "PropertyDefinitionTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeTypesCnd()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Transaction\UserTransactionInterface::inTransaction()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Jackalope\Transaction\UserTransaction" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QueryManagerInterface::createQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getQOMFactory()" might add "QueryObjectModelFactoryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getSupportedQueryLanguages()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::createQuery()" might add "QueryObjectModelInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::selector()" might add "SelectorInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::join()" might add "JoinInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::equiJoinCondition()" might add "EquiJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::sameNodeJoinCondition()" might add "SameNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::childNodeJoinCondition()" might add "ChildNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descendantNodeJoinCondition()" might add "DescendantNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::andConstraint()" might add "AndInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::orConstraint()" might add "OrInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::notConstraint()" might add "NotInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::comparison()" might add "ComparisonInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::propertyExistence()" might add "PropertyExistenceInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::fullTextSearch()" might add "FullTextSearchInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::sameNode()" might add "SameNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::childNode()" might add "ChildNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descendantNode()" might add "DescendantNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::propertyValue()" might add "PropertyValueInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::length()" might add "LengthInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::nodeName()" might add "NodeNameInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::nodeLocalName()" might add "NodeLocalNameInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::fullTextSearchScore()" might add "FullTextSearchScoreInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::lowerCase()" might add "LowerCaseInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::upperCase()" might add "UpperCaseInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::bindVariable()" might add "BindVariableValueInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::literal()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::ascending()" might add "OrderingInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descending()" might add "OrderingInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::column()" might add "ColumnInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "Symfony\Component\Security\Core\User\EquatableInterface::isEqualTo()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\SecurityBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\SecurityBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since symfony/security-bundle 5.3: The "sulu_security.encoder_factory" service is deprecated, use "security.password_hasher_factory" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "IteratorAggregate::getIterator()" might add "\Traversable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Webspace\Manager\WebspaceCollection" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Localization\Localization" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since sulu/sulu 2.3: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead. { "exception": {} } |
INFO 16:49:06 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://cms-sulu.jumo.idp.lu/_profiler/latest?panel=exception", "method": "GET" } |
INFO 16:49:06 | deprecation |
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 16:49:06 | deprecation |
User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Property" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
INFO 16:49:06 | deprecation |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
Stack Traces 2
[2/2]
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: No route found for "POST https://cms-sulu.jumo.idp.lu//blog//wp-login.php" (from "https://cms-sulu.jumo.idp.lu//blog//wp-login.php") at vendor/symfony/http-kernel/EventListener/RouterListener.php:135 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57) at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/EventDispatcher.php:270) at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}() (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/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:66) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: None of the routers in the chain matched this request POST //blog//wp-login.php HTTP/1.1 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: en,en-us;q=0.7,en;q=0.3 Connection: keep-alive Content-Length: 22 Content-Type: application/x-www-form-urlencoded Cookie: vsid=deleted; pll_language=deleted; wordpress_test_cookie=WP%20Cookie%20check; __cf_bm=9c9Lic2PgZMfNoEH_VHKkZceCyT6QEooOkHn5autqQw-1751620491-1.0.1.1-LLpD7Jl7EAPOIFw.mOOPrlt4h1U5_.KB1g.fhdai2Jzct9pXLsiKmGsS8SjtDEsm6KtePVGN6oQyFP2nojztNlIiQDNpW.Ta97ROQKl0LwU; parking_session=deleted; store_session_payload_1499158=deleted; store_login_session=b36cfd5abbfd6d03ebe4851841740fbe866f10f1%7EDEAnvqXciGLm1W477yRw3T4RSheX9O45Hjp1XXuk; nevercache-b39818=Y; .AspNetCore.Session=CfDJ8EHbqPlV78ZFsXCODq%2BqTQMsDhHwawiM02ZQKdLE%2F4LYBI5Dk%2BG3zK4mJVg1gdEer0DB3LMjr%2BSW5o4wx2UZdhTK04bJOebxnF3BP5Dbr4J1i3ksTN%2BbVuOGjbIcYE6uVD0k%2BrAOVtcT2nlErf8IPSNpBwMYRdsVaQvL7JRFre9W; KEY=deleted; SERVERID=deleted; _cfuvid=Vs4cSxCKzbIiVemt8xjGg8YYOUK0SRaobTg9Hmf.wYg-1751620491214-0.0.1.1-604800000; PHPSESSID=deleted; mc_session_ids[default]=b3e0245325d70f25a894695ffbf6a0ddaf5a9cee; mc_session_ids[multi][0]=908b1fc425cdcbb84494944db0d4222587c57d08; mc_session_ids[multi][1]=af994407ed01e36dc2e7cb87a7156fde455aead0; mc_session_ids[multi][2]=7d5c6318f4ba5be60c33913764bffdbb282568a5; mc_session_ids[multi][3]=8eec38447684313d98ab93915de706813dfde382; mc_session_ids[multi][4]=53e623759c449dcd37cbeab31e87e7191a1344ef; d_user_session=deleted; session-id=deleted; session-id-time=deleted; ubid-acbbr=deleted; session-token=deleted; XSRF-TOKEN=eyJpdiI6IjB0TGtha3p4VkIzZ0VOZC90clUrS0E9PSIsInZhbHVlIjoiY01nc29LVDNGcEFFLzdtclM1ekxFdWRTWndCUnd0bXlvcEhaSkt6QWdOUm1ydnNqb211K2ovZ2V2M0ZMZTNRUzJzSjB3bTFvYlNNanBQTWZ2UkNGRXhIc2hFd1FIN1UyRGRoSkZnV2kzMkdhNFdiMXZ3RVZucFRuT1hUaEtNeFUiLCJtYWMiOiJmMDE4MTdjMDFlMTBmMjg2ZWNiZjczOWQ2MDkzOWZkOWQ3ODFiZmFhNmRlZTQ2NTM0MDM5MDgxOThkMjRiOWQwIiwidGFnIjoiIn0%3D; __said=deleted; JSESSIONID=deleted; _subid=deleted; 4e582=deleted; crumb=deleted; .Stackify.Rum=2e39c9cb-ad59-44f5-93d4-62e4e72c5393; s=deleted; TrafficSafetyStore.com_CartID=68c25762-e28f-41ca-aced-a6013fb2b0af; a=deleted; ahoy_visitor=deleted; ahoy_visit=deleted; ahoy_track=deleted; _afid=deleted; aid=deleted; site_preview=deleted; __cfruid=deleted; MoodleSession=deleted; mailchimp_landing_site=deleted; locale=en_US; store_session_payload_4999911=deleted; ppwp_wp_session=deleted; TrafficSafetyStore_com_CartID=deleted; _AspNetCore_Session=deleted; _Stackify_Rum=deleted; ndsp=eyJkb21haW5OYW1lIjoiY2hhdGVyYnN0ZS5jb20iLCJtZW1iZXIiOiIxNTgiLCJ0ZW1wbGF0ZSI6InRyYWZmaWNzdGFycyIsInVzZXJBZ2VudCI6Ik1vemlsbGFcLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXaW42NDsgeDY0KSBBcHBsZVdlYktpdFwvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lXC8xMzEuMC4wLjAgU2FmYXJpXC81MzcuMzYiLCJzZXNzaW9uIjoiOTAzN2M2ZGI5MjdkODRkYjBjZmQwZWE2NGJhNGE4ZjciLCJ0aW1lX2luaXQiOjE3NTE2MTMzOTd9; __tad=1751616312.1142713; _session=eyJpdiI6IjgrS0VET0taUmRmTTBodHZsaU5RTVE9PSIsInZhbHVlIjoicjB3bHVSbWtpYlZNOXJJT3ZyaUk0QzEwaXdTdXlDSGR3RkVycHZ2Z3o5aUgrbmpwdnY0VjNaYkZleDNkb0FRL0Y4VlNodjVoWFVyNjV3SXl4NXZCdnFvQ2YxcDhYMmtzWmxKWVk4TXp2Mjl2QjcvZkJzS2puU2RBS2FXaDdvVjciLCJtYWMiOiI2MGYwNTQxZDUzYTk3MThiNWYwMjEzMTAwMmVhYzhmZjFhMGU3NzBlMGU0MzNlMDNmMWI3NWRiNjY3YzdkYzg2IiwidGFnIjoiIn0%3D; sess_id=SESS76s8nYKPaeo6mOpyo9peYxJjizErZRoVkV1OTgFKA; f2ec3bcd=7b0928f420f53c76c920b56f7c3cc5c6c7f5; __ddg8_=SwhNmebo6PeuYNKb; __ddg10_=1751618466; __ddg9_=129.146.4.238; __ddg1_=lYm9nN8n7HNwVLYaHpRt; 5matrasi-csi=AQDEjGdo; 5matrasi-cuzll=1751616709; 5matrasi-cpushi=1; AKA_A2=A; DDC.postalCode=85001; ddc_diag_akam_clientIP=129.146.4.238; ddc_diag_akam_currentTime=1751616827; ddc_diag_akam_requestID=188682fc; ddc_diag_akam_ghostIP=23.52.213.194; ddc_diag_akam_fullPath=/wp/; ddc_akam_bot=3904003:3904020:3904041:3904052:3904053:BOT-BROWSER-IMPERSONATOR:3900003:3900020|385E1B6849DDBEAC4AE727E844B20182; DDC.postalCityState=PHOENIX%2C%20AZ%2C%20US; DDC.userCoordinates=33.4486%2C-112.0733; ROUTE=.jsapps-667d7f8687-v5xr8; X-Detail=410; chooseamentorjuly26_live_u2main=bus|1751617339539x227850815793566370|1751617339645x606384516792839700; chooseamentorjuly26_live_u2main.sig=HrYothDrkS1brjy7aNEht6kRkF4; chooseamentorjuly26_u1main=1751617339539x227850815793566370; uid=CvEFCGhnj2dp3kMpnWj5Ag==; uaid=wTovaU5e-uURryFb5rAWtn-BdrhjZACCjPQJOjC6Wqk0MTNFyUrJOCA0pCI8wtXf3LAowiU3OcjUPdgtOCtNNyK8UKmWAQA.; user_prefs=07cyF8HpoY6tQVtEjOH7QR1k8HdjZACCjPQJOjA6Wik02EVJJ680J0dHKTVPNzRYSUcJRIBFjCAULiKWAQA.; fve=1751617580.0; wama88_session=6QKsl0bo2NAKPdYcp0018l2C4Vc3mzSRD6qOdLym; ANYSELITEDEL=Y; _shopify_country=United+States; cart_currency=USD; _shopify_y=1af32581-83af-46bd-b028-1465545bbe19; _shopify_s=7584e19b-b270-4227-8db3-45a531173828; keep_alive=daefaa6d-e94e-4659-a62e-e4db1970f5ee; _tracking_consent=3.AMPS_USAZ_f_f_7uNw3ZmHS52OMpC4eyJCzA; _orig_referrer=https%3A%2F%2Fcitizensforlebanon.com%2F%2Fblog%2F%2Fwp-login.php; _landing_page=%2Fblog; csrf_cookie_name=65ca31b8eb5464cba68e3184ed78565c; ci_session=1pe61rp00koqfpa922vchr6udjd3t7hu; visid_incap_1981580=ByusdxD/R9GuEQUNyoYTehSVZ2gAAAAAQUIPAAAAAACgfeAvcH6lvdx9fP7TzC2S; incap_ses_9153_1981580=GvuzQ2i+EzUQu99AQP0FfxSVZ2gAAAAABjhWhlFHSG28yQYViQ/IfQ==; ARRAffinity=ea28117f37935a06a82e66eff48f06d1b7b74dc52d6f1ca845547af38ed9452e; ARRAffinitySameSite=ea28117f37935a06a82e66eff48f06d1b7b74dc52d6f1ca845547af38ed9452e; store_session_payload_1830533=5074650a5aa9cb2bb4068bd4fe8c78422bfcc785%7EeyJpdiI6Ik1GbjBwcWoyblVCc2ZFUElZN1V5QXc9PSIsInZhbHVlIjoiN1hMNmVWY1BFL0xXOHdEdmRhRFJmb291a0JxTHRlTXV2b2tJVHJ6cDVUNFVmN2lIYk10aUthalhXZkNYbWpMTTBaelJrS08yNWd3dWhXcVJNSXNzbVE1Y2V6cVlWVTlwQW1IV3Y0ZjJEV3dyY1Y3cmFPRHJCOVJ3OWdCWE9IZDdQVmtRbGEvNTlCWnhoYW03MlB0MU1VSEhKZUczRk1uczNkTy81RUk3UVUwR3N6OTFMNWx0OHRaMlhnUkNxMkx6OVZyL2FUOTYxU3kvWTJxemw4VkpLMFVIL09hQmxGNGVISnByTlQycEppaHZjQnVJK2JxV0x6UTNXS2F1Sit4SnQvdEwzY1dDNER0MW02ZE9peEJZMXFWZ2t3T0k1VkdKMC9DcE1PZ1BJZUk9IiwibWFjIjoiNGM4ZmFkNGU4MTFmYjRmYzAzZTc1NTViMGQxY2JjYzY0MTA4ODAxYzM1M2M4YzI2NjAzOWVmNWMzMjE4YjJhYSJ9; _zendesk_session=7itcI%2BO6mVE9%2B6gOctgHQ3axOlrPDZrOYEuQr%2BMDtAVk07cKmjkErVNUKCjiuArdlc%2FZTc1dHTHfK7C%2FWz%2B445D4esGXiFKM2HKGeqROKt756uedWiRXulWSlGzFhtC4esZaaEhcs%2BRWGSyDDpNDsrhVUedq0xG369dxYrwTqLepTZsi8RU%2F006x3V0XaV7706oaq6Qx73s3opgxwC%2BnBnpzK8DFeDLGQJfXETAobN6p846ej%2BwP2Q%3D%3D--JNg6VnNE0LOrPy0Q--9G0Ru9D1Dsnpe2elRJtCkA%3D%3D; CF_AppSession=nb7c8c3107e32bd0d; bksrv=bkweb01; REDIRECTOR=dr1; oc_sessionPassphrase=2fxonemIZyjj6V7hFnVHdo2vPfHl%2BtJifPMxm0yxKdZBjriZxN3qeopghVM3B1gqK0ZmNeIUknK6FubtA8fFyumzrqrOCEouCI6%2F3j6cooCC%2Fhy2IaunBTStu96yiBrm; oczyf2b1bmx2=k11p286lrr0dgrj2r95uh2hqnr; __Host-nc_sameSiteCookielax=true; __Host-nc_sameSiteCookiestrict=true; oc4oex9obz5x=45f8f1d1db8f90b512c0aceee8b5273b; ock8cwwgw8mt=3f7eb29bf0c693351f6eee7062969fe2; occ4bml54xox=0b3103e2beebe4ca155fc22e253d9dea; oc0rb7wrlm3a=dfc97ad904911e41c89d3bc097640d55; ocwg3iqiemt8=f4mc4no6ornntspppn7n47c3eh; oc62z2vb41dk=8173d0454e456a9cee51c6f6dd9219d4; ocor4sgqqqpn=mjh9cc8g9i3q6jbs041rgl9aeo; xf_csrf=WGCb2db9zOoAlNT3; sl-session=iCj4M37taGhRDFPMmWblhg==; phpbb3_saenf_u=1; phpbb3_saenf_sid=b19f0854afebcc66c68982a878a1b793; BIGipServerwww.cm.v1.huggies.com_pool=1495895050.20480.0000; countdown_firstseen=1751620530; visid_incap_3177642=g2on446UQ/6YlLuHCCv2i92bZ2gAAAAAQUIPAAAAAACLsopXNQck5VdmLD2+U5rG; nlbi_3177642=JBktX5K97XMMZxU0h96WIgAAAAA6FTKG4BKkMg4d2ewcneBY; incap_ses_1244_3177642=WIrfcVYtRzEdLVY5wZNDEd6bZ2gAAAAA3JKUM4fTR3irAkDNBfgIvA== Host: cms-sulu.jumo.idp.lu Keep-Alive: 300 Referer: https://cms-sulu.jumo.idp.lu//blog//wp-login.php User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 X-Php-Ob-Level: 1 Cookie: vsid=deleted; pll_language=deleted; wordpress_test_cookie=WP Cookie check; __cf_bm=9c9Lic2PgZMfNoEH_VHKkZceCyT6QEooOkHn5autqQw-1751620491-1.0.1.1-LLpD7Jl7EAPOIFw.mOOPrlt4h1U5_.KB1g.fhdai2Jzct9pXLsiKmGsS8SjtDEsm6KtePVGN6oQyFP2nojztNlIiQDNpW.Ta97ROQKl0LwU; parking_session=deleted; store_session_payload_1499158=deleted; store_login_session=b36cfd5abbfd6d03ebe4851841740fbe866f10f1~DEAnvqXciGLm1W477yRw3T4RSheX9O45Hjp1XXuk; nevercache-b39818=Y; _AspNetCore_Session=CfDJ8EHbqPlV78ZFsXCODq+qTQMsDhHwawiM02ZQKdLE/4LYBI5Dk+G3zK4mJVg1gdEer0DB3LMjr+SW5o4wx2UZdhTK04bJOebxnF3BP5Dbr4J1i3ksTN+bVuOGjbIcYE6uVD0k+rAOVtcT2nlErf8IPSNpBwMYRdsVaQvL7JRFre9W; KEY=deleted; SERVERID=deleted; _cfuvid=Vs4cSxCKzbIiVemt8xjGg8YYOUK0SRaobTg9Hmf.wYg-1751620491214-0.0.1.1-604800000; PHPSESSID=deleted; mc_session_ids%5Bdefault%5D=b3e0245325d70f25a894695ffbf6a0ddaf5a9cee; mc_session_ids%5Bmulti%5D%5B0%5D=908b1fc425cdcbb84494944db0d4222587c57d08; mc_session_ids%5Bmulti%5D%5B1%5D=af994407ed01e36dc2e7cb87a7156fde455aead0; mc_session_ids%5Bmulti%5D%5B2%5D=7d5c6318f4ba5be60c33913764bffdbb282568a5; mc_session_ids%5Bmulti%5D%5B3%5D=8eec38447684313d98ab93915de706813dfde382; mc_session_ids%5Bmulti%5D%5B4%5D=53e623759c449dcd37cbeab31e87e7191a1344ef; d_user_session=deleted; session-id=deleted; session-id-time=deleted; ubid-acbbr=deleted; session-token=deleted; XSRF-TOKEN=eyJpdiI6IjB0TGtha3p4VkIzZ0VOZC90clUrS0E9PSIsInZhbHVlIjoiY01nc29LVDNGcEFFLzdtclM1ekxFdWRTWndCUnd0bXlvcEhaSkt6QWdOUm1ydnNqb211K2ovZ2V2M0ZMZTNRUzJzSjB3bTFvYlNNanBQTWZ2UkNGRXhIc2hFd1FIN1UyRGRoSkZnV2kzMkdhNFdiMXZ3RVZucFRuT1hUaEtNeFUiLCJtYWMiOiJmMDE4MTdjMDFlMTBmMjg2ZWNiZjczOWQ2MDkzOWZkOWQ3ODFiZmFhNmRlZTQ2NTM0MDM5MDgxOThkMjRiOWQwIiwidGFnIjoiIn0=; __said=deleted; JSESSIONID=deleted; _subid=deleted; 4e582=deleted; crumb=deleted; _Stackify_Rum=2e39c9cb-ad59-44f5-93d4-62e4e72c5393; s=deleted; TrafficSafetyStore_com_CartID=68c25762-e28f-41ca-aced-a6013fb2b0af; a=deleted; ahoy_visitor=deleted; ahoy_visit=deleted; ahoy_track=deleted; _afid=deleted; aid=deleted; site_preview=deleted; __cfruid=deleted; MoodleSession=deleted; mailchimp_landing_site=deleted; locale=en_US; store_session_payload_4999911=deleted; ppwp_wp_session=deleted; ndsp=eyJkb21haW5OYW1lIjoiY2hhdGVyYnN0ZS5jb20iLCJtZW1iZXIiOiIxNTgiLCJ0ZW1wbGF0ZSI6InRyYWZmaWNzdGFycyIsInVzZXJBZ2VudCI6Ik1vemlsbGFcLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXaW42NDsgeDY0KSBBcHBsZVdlYktpdFwvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lXC8xMzEuMC4wLjAgU2FmYXJpXC81MzcuMzYiLCJzZXNzaW9uIjoiOTAzN2M2ZGI5MjdkODRkYjBjZmQwZWE2NGJhNGE4ZjciLCJ0aW1lX2luaXQiOjE3NTE2MTMzOTd9; __tad=1751616312.1142713; _session=eyJpdiI6IjgrS0VET0taUmRmTTBodHZsaU5RTVE9PSIsInZhbHVlIjoicjB3bHVSbWtpYlZNOXJJT3ZyaUk0QzEwaXdTdXlDSGR3RkVycHZ2Z3o5aUgrbmpwdnY0VjNaYkZleDNkb0FRL0Y4VlNodjVoWFVyNjV3SXl4NXZCdnFvQ2YxcDhYMmtzWmxKWVk4TXp2Mjl2QjcvZkJzS2puU2RBS2FXaDdvVjciLCJtYWMiOiI2MGYwNTQxZDUzYTk3MThiNWYwMjEzMTAwMmVhYzhmZjFhMGU3NzBlMGU0MzNlMDNmMWI3NWRiNjY3YzdkYzg2IiwidGFnIjoiIn0=; sess_id=SESS76s8nYKPaeo6mOpyo9peYxJjizErZRoVkV1OTgFKA; f2ec3bcd=7b0928f420f53c76c920b56f7c3cc5c6c7f5; __ddg8_=SwhNmebo6PeuYNKb; __ddg10_=1751618466; __ddg9_=129.146.4.238; __ddg1_=lYm9nN8n7HNwVLYaHpRt; 5matrasi-csi=AQDEjGdo; 5matrasi-cuzll=1751616709; 5matrasi-cpushi=1; AKA_A2=A; DDC_postalCode=85001; ddc_diag_akam_clientIP=129.146.4.238; ddc_diag_akam_currentTime=1751616827; ddc_diag_akam_requestID=188682fc; ddc_diag_akam_ghostIP=23.52.213.194; ddc_diag_akam_fullPath=/wp/; ddc_akam_bot=3904003:3904020:3904041:3904052:3904053:BOT-BROWSER-IMPERSONATOR:3900003:3900020|385E1B6849DDBEAC4AE727E844B20182; DDC_postalCityState=PHOENIX, AZ, US; DDC_userCoordinates=33.4486,-112.0733; ROUTE=.jsapps-667d7f8687-v5xr8; X-Detail=410; chooseamentorjuly26_live_u2main=bus|1751617339539x227850815793566370|1751617339645x606384516792839700; chooseamentorjuly26_live_u2main_sig=HrYothDrkS1brjy7aNEht6kRkF4; chooseamentorjuly26_u1main=1751617339539x227850815793566370; uid=CvEFCGhnj2dp3kMpnWj5Ag==; uaid=wTovaU5e-uURryFb5rAWtn-BdrhjZACCjPQJOjC6Wqk0MTNFyUrJOCA0pCI8wtXf3LAowiU3OcjUPdgtOCtNNyK8UKmWAQA.; user_prefs=07cyF8HpoY6tQVtEjOH7QR1k8HdjZACCjPQJOjA6Wik02EVJJ680J0dHKTVPNzRYSUcJRIBFjCAULiKWAQA.; fve=1751617580.0; wama88_session=6QKsl0bo2NAKPdYcp0018l2C4Vc3mzSRD6qOdLym; ANYSELITEDEL=Y; _shopify_country=United+States; cart_currency=USD; _shopify_y=1af32581-83af-46bd-b028-1465545bbe19; _shopify_s=7584e19b-b270-4227-8db3-45a531173828; keep_alive=daefaa6d-e94e-4659-a62e-e4db1970f5ee; _tracking_consent=3.AMPS_USAZ_f_f_7uNw3ZmHS52OMpC4eyJCzA; _orig_referrer=https://citizensforlebanon.com//blog//wp-login.php; _landing_page=/blog; csrf_cookie_name=65ca31b8eb5464cba68e3184ed78565c; ci_session=1pe61rp00koqfpa922vchr6udjd3t7hu; visid_incap_1981580=ByusdxD/R9GuEQUNyoYTehSVZ2gAAAAAQUIPAAAAAACgfeAvcH6lvdx9fP7TzC2S; incap_ses_9153_1981580=GvuzQ2i+EzUQu99AQP0FfxSVZ2gAAAAABjhWhlFHSG28yQYViQ/IfQ==; ARRAffinity=ea28117f37935a06a82e66eff48f06d1b7b74dc52d6f1ca845547af38ed9452e; ARRAffinitySameSite=ea28117f37935a06a82e66eff48f06d1b7b74dc52d6f1ca845547af38ed9452e; store_session_payload_1830533=5074650a5aa9cb2bb4068bd4fe8c78422bfcc785~eyJpdiI6Ik1GbjBwcWoyblVCc2ZFUElZN1V5QXc9PSIsInZhbHVlIjoiN1hMNmVWY1BFL0xXOHdEdmRhRFJmb291a0JxTHRlTXV2b2tJVHJ6cDVUNFVmN2lIYk10aUthalhXZkNYbWpMTTBaelJrS08yNWd3dWhXcVJNSXNzbVE1Y2V6cVlWVTlwQW1IV3Y0ZjJEV3dyY1Y3cmFPRHJCOVJ3OWdCWE9IZDdQVmtRbGEvNTlCWnhoYW03MlB0MU1VSEhKZUczRk1uczNkTy81RUk3UVUwR3N6OTFMNWx0OHRaMlhnUkNxMkx6OVZyL2FUOTYxU3kvWTJxemw4VkpLMFVIL09hQmxGNGVISnByTlQycEppaHZjQnVJK2JxV0x6UTNXS2F1Sit4SnQvdEwzY1dDNER0MW02ZE9peEJZMXFWZ2t3T0k1VkdKMC9DcE1PZ1BJZUk9IiwibWFjIjoiNGM4ZmFkNGU4MTFmYjRmYzAzZTc1NTViMGQxY2JjYzY0MTA4ODAxYzM1M2M4YzI2NjAzOWVmNWMzMjE4YjJhYSJ9; _zendesk_session=7itcI+O6mVE9+6gOctgHQ3axOlrPDZrOYEuQr+MDtAVk07cKmjkErVNUKCjiuArdlc/ZTc1dHTHfK7C/Wz+445D4esGXiFKM2HKGeqROKt756uedWiRXulWSlGzFhtC4esZaaEhcs+RWGSyDDpNDsrhVUedq0xG369dxYrwTqLepTZsi8RU/006x3V0XaV7706oaq6Qx73s3opgxwC+nBnpzK8DFeDLGQJfXETAobN6p846ej+wP2Q==--JNg6VnNE0LOrPy0Q--9G0Ru9D1Dsnpe2elRJtCkA==; CF_AppSession=nb7c8c3107e32bd0d; bksrv=bkweb01; REDIRECTOR=dr1; oc_sessionPassphrase=2fxonemIZyjj6V7hFnVHdo2vPfHl+tJifPMxm0yxKdZBjriZxN3qeopghVM3B1gqK0ZmNeIUknK6FubtA8fFyumzrqrOCEouCI6/3j6cooCC/hy2IaunBTStu96yiBrm; oczyf2b1bmx2=k11p286lrr0dgrj2r95uh2hqnr; __Host-nc_sameSiteCookielax=true; __Host-nc_sameSiteCookiestrict=true; oc4oex9obz5x=45f8f1d1db8f90b512c0aceee8b5273b; ock8cwwgw8mt=3f7eb29bf0c693351f6eee7062969fe2; occ4bml54xox=0b3103e2beebe4ca155fc22e253d9dea; oc0rb7wrlm3a=dfc97ad904911e41c89d3bc097640d55; ocwg3iqiemt8=f4mc4no6ornntspppn7n47c3eh; oc62z2vb41dk=8173d0454e456a9cee51c6f6dd9219d4; ocor4sgqqqpn=mjh9cc8g9i3q6jbs041rgl9aeo; xf_csrf=WGCb2db9zOoAlNT3; sl-session=iCj4M37taGhRDFPMmWblhg==; phpbb3_saenf_u=1; phpbb3_saenf_sid=b19f0854afebcc66c68982a878a1b793; BIGipServerwww_cm_v1_huggies_com_pool=1495895050.20480.0000; countdown_firstseen=1751620530; visid_incap_3177642=g2on446UQ/6YlLuHCCv2i92bZ2gAAAAAQUIPAAAAAACLsopXNQck5VdmLD2+U5rG; nlbi_3177642=JBktX5K97XMMZxU0h96WIgAAAAA6FTKG4BKkMg4d2ewcneBY; incap_ses_1244_3177642=WIrfcVYtRzEdLVY5wZNDEd6bZ2gAAAAA3JKUM4fTR3irAkDNBfgIvA== log=admin&pwd=ĄŽERTY at vendor/symfony-cmf/routing/src/ChainRouter.php:210 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/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57) at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/EventDispatcher.php:270) at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}() (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/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:66) |