Exceptions
Exception
Shopware\Core\Framework\Routing\ RoutingException
Show exception properties
Shopware\Core\Framework\Routing\RoutingException {#8019 -statusCode: 400 -headers: [] #parameters: array:2 [ "parameterName" => "id" "path" => "" ] #statusCode: 400 #errorCode: "FRAMEWORK__MISSING_REQUEST_PARAMETER" }
);}public static function missingRequestParameter(string $name, string $path = ''): self{return new self(Response::HTTP_BAD_REQUEST,self::MISSING_REQUEST_PARAMETER_CODE,'Parameter "{{ parameterName }}" is missing.',['parameterName' => $name, 'path' => $path]);
in
vendor/shopware/storefront/Controller/CmsController.php
::
missingRequestParameter
(line 58)
*/#[Route(path: '/widgets/cms/{id}', name: 'frontend.cms.page', defaults: ['id' => null, 'XmlHttpRequest' => true, '_httpCache' => true], methods: ['GET', 'POST'])]public function page(?string $id, Request $request, SalesChannelContext $salesChannelContext): Response{if (!$id) {throw RoutingException::missingRequestParameter('id');}$page = $this->cmsRoute->load($id, $request, $salesChannelContext)->getCmsPage();$this->hook(new CmsPageLoadedHook($page, $salesChannelContext));
in
vendor/symfony/http-kernel/HttpKernel.php
->
page
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php
->
handle
(line 72)
$this->dispatcher->dispatch($event);return $event->getResponse();}return parent::handle($request, $type, $catch);}}
in
vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());}try {return $kernel->handle($request, $type, $catch);} finally {// restore global stateRequest::setTrustedProxies($trustedProxies, $trustedHeaderSet);}}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
::
handle
(line 476)
protected function forward(Request $request, bool $catch = false, ?Response $entry = null): Response{$this->surrogate?->addSurrogateCapability($request);// always a "master" request (as the real master request can be in cache)$response = SubRequestHandler::handle($this->kernel, $request, HttpKernelInterface::MAIN_REQUEST, $catch);$this->forwardedRequest = $request;/** Support stale-if-error given on Responses or as a config option.* RFC 7234 summarizes in Section 4.2.4 (but also mentions with the individual
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
forward
(line 453)
// avoid that the backend sends no content$subRequest->headers->remove('If-Modified-Since');$subRequest->headers->remove('If-None-Match');$response = $this->forward($subRequest, $catch);if ($response->isCacheable()) {$this->store($request, $response);}
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
fetch
(line 351)
}if (null === $entry) {$this->record($request, 'miss');return $this->fetch($request, $catch);}if (!$this->isFreshEnough($request, $entry)) {$this->record($request, 'stale');
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
lookup
(line 220)
$response = $this->fetch($request, $catch);} else {$response = null;do {try {$response = $this->lookup($request, $catch);} catch (CacheWasLockedException) {}} while (null === $response);}
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 65)
// only handle main request inside http cache, because ESI tags are also interpreted as main request.// sub requests are requests, which are forwarded to the kernel inside the php stack// https://github.com/symfony/symfony/issues/51648#issuecomment-1717846894if ($type === HttpKernelInterface::MAIN_REQUEST) {$response = parent::handle($request, $type, $catch);} elseif ($request->attributes->has('_sw_esi')) {$response = parent::handle($request, $type, $catch);} else {$response = $this->getKernel()->handle($request, $type, $catch);}
in
vendor/shopware/core/Kernel.php
->
handle
(line 153)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response{$this->boot();return $this->getHttpKernel()->handle($request, $type, $catch);}public function boot(): void{if (!$this->booted) {
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 34)
) {}public function run(): int{$response = $this->kernel->handle($this->request);$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {fastcgi_finish_request();
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/guasnwql/guaxstest_neu/shop/vendor/autoload_runtime.php')
in
public/index.php
(line 11)
use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;use Symfony\Component\HttpFoundation\Response;$_SERVER['SCRIPT_FILENAME'] = __FILE__;require_once __DIR__ . '/../vendor/autoload_runtime.php';if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {$_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;}
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 07:10:31 | php |
User Deprecated: The Shopware\Core\Service\Service bundle should be added to config/bundles.php {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Method "Shopware\Core\Framework\DataAbstractionLayer\EntityExtension::getEntityName()" is deprecated and will be removed in v6.7.0.0. Use "Method will be abstract" instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class uses "Symfony\Component\VarExporter\LazyGhostTrait" that is deprecated since Symfony 7.3, use native lazy objects instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: The "Shopware\Core\Framework\Routing\CanonicalRedirectService::__construct()" method is considered internal. It may change without further notice. You should not extend it from "Scop\PlatformRedirecter\Decorator\CanonicalRedirectServiceDecorator". {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:31 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "5d108e"
},
"request_uri": "https://php.guaxstest.com/_profiler/5d108e?panel=exception",
"method": "GET"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\JsonRequestTransformerListener::onRequest". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\JsonRequestTransformerListener::onRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::setupOAuth". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::setupOAuth"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::onKernelRequest"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\Licensing\Subscriber\LicenseReportListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\Licensing\\Subscriber\\LicenseReportListener::__invoke"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Commercial\B2B\EmployeeManagement\Api\Annotation\B2bRouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Api\\Annotation\\B2bRouteParamsCleanupListener::__invoke"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 07:10:31 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| INFO 07:10:31 | php |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository" class is considered final. It may change without further notice as of its next major version. You should not extend it from "CobCustomerNumberLogin\Core\Checkout\Customer\CustomerRepository". {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: The "Shopware\Core\Framework\DataAbstractionLayer\EntityRepository::__construct()" method is considered internal. It may change without further notice. You should not extend it from "CobCustomerNumberLogin\Core\Checkout\Customer\CustomerRepository". {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: The "Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Shopware\B2B\OrderNumber\BridgePlatform\SalesChannelProductRepositoryDecorator". {
"exception": {}
}
|
| INFO 07:10:31 | php |
User Deprecated: The "Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Shopware\B2B\InStock\BridgePlatform\SalesChannelProductRepositoryDecorator". {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swag\CustomizedProducts\Storefront\Framework\Twig\Extension\CustomizedProductsPriceTagTwigFilter" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swag\CustomizedProducts\Storefront\Framework\Twig\Extension\CustomizedProductsLoadValidMimeTypes" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swag\CustomizedProducts\Storefront\Framework\Twig\Extension\CustomizedProductsTruncateEllipsisFilter" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Uwp\CmsColumnSlots\Twig\TwigExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "zenit\PlatformHorizon\Twig\GetCategoryById" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "zenit\PlatformHorizon\Twig\GetCustomFieldNameById" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::propagateSubscriptionDetails". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::propagateSubscriptionDetails"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "zenit\PlatformHorizon\Subscriber\KernelControllerSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "zenit\\PlatformHorizon\\Subscriber\\KernelControllerSubscriber::onKernelController"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "SwagB2bPlatform\Routing\RouteScopeResolver::resolveScope". {
"event": "kernel.controller",
"listener": "SwagB2bPlatform\\Routing\\RouteScopeResolver::resolveScope"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\SalesChannelAuthenticationListener::validateRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\SalesChannelAuthenticationListener::validateRequest"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\Authentication\ApiAuthenticationListener::validateRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\Authentication\\ApiAuthenticationListener::validateRequest"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Swag\PayPal\Checkout\ExpressCheckout\ExpressCheckoutSubscriber::mapShippingCallbackContextToken". {
"event": "kernel.controller",
"listener": "Swag\\PayPal\\Checkout\\ExpressCheckout\\ExpressCheckoutSubscriber::mapShippingCallbackContextToken"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\EmployeeManagement\Domain\RouteAccess\B2bRouteBlocker::blockRouteForEmployee". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Domain\\RouteAccess\\B2bRouteBlocker::blockRouteForEmployee"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\Acl\AclAnnotationValidator::validate". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\Acl\\AclAnnotationValidator::validate"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\EmployeeManagement\Api\Annotation\B2bEmployeePermissionValidator::validate". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\B2B\\EmployeeManagement\\Api\\Annotation\\B2bEmployeePermissionValidator::validate"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Commercial\B2B\QuickOrder\Api\Annotation\CustomerSpecificFeatureActivated::validate". {
"event": "kernel.controller",
"listener": "Shopware\\Commercial\\B2B\\QuickOrder\\Api\\Annotation\\CustomerSpecificFeatureActivated::validate"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\B2B\SalesRepresentative\BridgePlatform\SalesRepresentativeSubscriber::redirectSalesRepresentative". {
"event": "kernel.controller",
"listener": "Shopware\\B2B\\SalesRepresentative\\BridgePlatform\\SalesRepresentativeSubscriber::redirectSalesRepresentative"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Adapter\Cache\CacheStateSubscriber::setStates". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheStateSubscriber::setStates"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Api\EventListener\ExpectationSubscriber::checkExpectations". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Api\\EventListener\\ExpectationSubscriber::checkExpectations"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "SwagB2bPlatform\Subscriber\FrontendAccountFirewall::redirectToController". {
"event": "kernel.controller",
"listener": "SwagB2bPlatform\\Subscriber\\FrontendAccountFirewall::redirectToController"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "SwagB2bPlatform\Subscriber\B2bModuleFirewall::redirectOutOfB2b". {
"event": "kernel.controller",
"listener": "SwagB2bPlatform\\Subscriber\\B2bModuleFirewall::redirectOutOfB2b"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller" to listener "Shopware\B2B\AclRoute\BridgePlatform\RequestInterceptorSubscriber::redirectIfInaccessible". {
"event": "kernel.controller",
"listener": "Shopware\\B2B\\AclRoute\\BridgePlatform\\RequestInterceptorSubscriber::redirectIfInaccessible"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller_arguments" to listener "Shopware\Commercial\Subscription\Storefront\StorefrontSubscriber::setSubscriptionToken". {
"event": "kernel.controller_arguments",
"listener": "Shopware\\Commercial\\Subscription\\Storefront\\StorefrontSubscriber::setSubscriptionToken"
}
|
| DEBUG 07:10:32 | event |
Notified event "kernel.controller_arguments" to listener "ContainerW2oeae5\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerW2oeae5\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 07:10:32 | 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"
}
|
| INFO 07:10:32 | app | #1 Rule detection: Standard Versand with priority 100 (id: 0195a9d54a6873f39f0729bdb3e64aec) |
| INFO 07:10:32 | app | #2 Rule detection: DE with priority 100 (id: 0195a9d54a867310802d2ab2731b7a48) |
| INFO 07:10:32 | app | #3 Rule detection: Cart >= 0 with priority 100 (id: cf2d1cd891494f4da1e57159a9b12280) |
| INFO 07:10:32 | app | #4 Rule detection: Always valid (Default) with priority 100 (id: e8a160057db6419aba67eb21ed99360f) |
| INFO 07:10:32 | app | #5 Rule detection: Cart >= 0 (Payment) with priority 100 (id: f28ff6bc1ac64162909d935c5087fb4a) |
| INFO 07:10:32 | app | #6 Rule detection: Customer from DE with priority 50 (id: 96a1b827b21a459ab4d2648e9d96d0aa) |
| INFO 07:10:32 | app | #7 Rule detection: VERSANDKOSTEN IN FLAT ALT with priority 21 (id: 019865c85b4376d2ba771c12b68325dc) |
| INFO 07:10:32 | app | #8 Rule detection: VERSANDKOSTEN IN FLAT with priority 21 (id: 0199bdd98e8e727cb855b8d13783533d) |
| INFO 07:10:32 | app | #9 Rule detection: VERSAND DE with priority 1 (id: 0192718e7beb784c8e50c85d2270be68) |
| INFO 07:10:32 | app | #10 Rule detection: icmss_price with priority 1 (id: 16803ca29f8b436491fe1a3c2536f31a) |
| INFO 07:10:32 | app | #11 Rule detection: All customers with priority 1 (id: 331379fdeb2446199494643455ee052d) |
| INFO 07:10:32 | app | #12 Rule detection: icmss_price with priority 1 (id: 66c0eb4bdd0149af975172d136021b06) |
| INFO 07:10:32 | app | #13 Rule detection: icmss_price with priority 1 (id: 6b6f7af38fc24709816843ac307eb896) |
| INFO 07:10:32 | app | #14 Rule detection: icmss_price with priority 1 (id: 6b756125254a4898990d07f137ed005c) |
| INFO 07:10:32 | app | #15 Rule detection: icmss_price Standard-Kundengruppe with priority 1 (id: 94947c071dbc4fcfb0fa5e9f3ea28bf4) |
| INFO 07:10:32 | app | #16 Rule detection: icmss_price with priority 1 (id: cc972532bd80427e8dae88754cae827f) |
| INFO 07:10:32 | php |
User Deprecated: Since symfony/validator 7.4: Support for evaluating options in the base Constraint class is deprecated. Initialize properties in the constructor of Shopware\Core\Framework\DataAbstractionLayer\Validation\EntityExists instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PayLaterHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\AbstractSyncAPMHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\SynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SEPAHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\VenmoHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\VenmoHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\RecurringPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ApplePayHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GooglePayHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.sync` is deprecated for service Swag\PayPal\Checkout\Payment\Method\PUIHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\PUIHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\SynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BancontactAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\APMHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\AsynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\BlikAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\EpsAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\GiropayAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\IdealAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MultibancoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\MyBankAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\OxxoAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\P24APMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since swag/paypal 10.0.0: tag:v10.0.0 - The Swag\PayPal\Checkout\Payment\Method\SofortAPMHandler service will be removed {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\TrustlyAPMHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\Method\ACDCHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\ACDCHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\AsynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\Method\ACDCHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\RecurringPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The tag `shopware.payment.method.async` is deprecated for service Swag\PayPal\Checkout\Payment\PayPalPaymentHandler and will be removed in 6.7.0. Use `shopware.payment.method` instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\PayPalPaymentHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\AsynchronousPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: The "Swag\PayPal\Checkout\Payment\PayPalPaymentHandler" class implements "Shopware\Core\Checkout\Payment\Cart\PaymentHandler\RecurringPaymentHandlerInterface" that is deprecated tag:v6.7.0 - will be removed, extend AbstractPaymentHandler instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
| INFO 07:10:32 | php |
User Deprecated: Since symfony/http-foundation 7.4: Request::get() is deprecated, use properties ->attributes, query or request directly instead. {
"exception": {}
}
|
Stack Trace
|
RoutingException
|
|---|
Shopware\Core\Framework\Routing\RoutingException:
Parameter "id" is missing.
at vendor/shopware/core/Framework/Routing/RoutingException.php:42
at Shopware\Core\Framework\Routing\RoutingException::missingRequestParameter()
(vendor/shopware/storefront/Controller/CmsController.php:58)
at Shopware\Storefront\Controller\CmsController->page()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle()
(vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:476)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:453)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->fetch()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:351)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->lookup()
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:220)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle()
(vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:65)
at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle()
(vendor/shopware/core/Kernel.php:153)
at Shopware\Core\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/home/guasnwql/guaxstest_neu/shop/vendor/autoload_runtime.php')
(public/index.php:11)
|