Exceptions
Exception
Symfony\Component\Routing\Exception\ MissingMandatoryParametersException
Show exception properties
Symfony\Component\Routing\Exception\MissingMandatoryParametersException {#7339 -routeName: "frontend.detail.page" -missingParameters: array:1 [ 0 => "productId" ] }
in
vendor/symfony/routing/Generator/UrlGenerator.php
(line 163)
$variables = array_flip($variables);$mergedParams = array_replace($defaults, $this->context->getParameters(), $parameters);// all params must be givenif ($diff = array_diff_key($variables, $mergedParams)) {throw new MissingMandatoryParametersException($name, array_keys($diff));}$url = '';$optional = true;$message = 'Parameter "{parameter}" for route "{route}" must match "{expected}" ("{given}" given) to generate a corresponding URL.';
in
vendor/symfony/routing/Generator/CompiledUrlGenerator.php
->
doGenerate
(line 69)
} elseif (!isset($parameters['_locale'])) {$parameters['_locale'] = $defaults['_locale'];}}return $this->doGenerate($variables, $defaults, $requirements, $tokens, $parameters, $name, $referenceType, $hostTokens, $requiredSchemes);}}
in
vendor/symfony/routing/Router.php
->
generate
(line 172)
$this->configCacheFactory = $configCacheFactory;}public function generate(string $name, array $parameters = [], int $referenceType = self::ABSOLUTE_PATH): string{return $this->getGenerator()->generate($name, $parameters, $referenceType);}public function match(string $pathinfo): array{return $this->getMatcher()->match($pathinfo);
in
vendor/shopware/storefront/Framework/Routing/Router.php
->
generate
(line 143)
break;case self::ABSOLUTE_PATH:default:$generated = $this->removePrefix($this->decorated->generate($name, $parameters),$basePath);$rewrite = $basePath . rtrim($salesChannelBaseUrl, '/') . $generated;
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
generate
(line 108)
** @see UrlGeneratorInterface*/protected function generateUrl(string $route, array $parameters = [], int $referenceType = UrlGeneratorInterface::ABSOLUTE_PATH): string{return $this->container->get('router')->generate($route, $parameters, $referenceType);}/*** Forwards the request to another controller.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
generateUrl
(line 142)
** @param int $status The HTTP status code (302 "Found" by default)*/protected function redirectToRoute(string $route, array $parameters = [], int $status = 302): RedirectResponse{return $this->redirect($this->generateUrl($route, $parameters), $status);}/*** Returns a JsonResponse that uses the serializer component if enabled, or json_encode.*
in
vendor/shopware/storefront/Controller/StorefrontController.php
->
redirectToRoute
(line 282)
{$event = new StorefrontRedirectEvent($route, $parameters, $status);$this->container->get('event_dispatcher')->dispatch($event);try {return parent::redirectToRoute($event->getRoute(), $event->getParameters(), $event->getStatus());} catch (RouteNotFoundException $e) {throw StorefrontException::routeNotFound($route, $e);}}
in
vendor/shopware/storefront/Controller/StorefrontController.php
->
redirectToRoute
(line 133)
$params = $this->decodeParam($request, 'redirectParameters');$redirectTo = RequestParamHelper::get($request, 'redirectTo');if ($redirectTo && \is_string($redirectTo)) {return $this->redirectToRoute($redirectTo, $params);}return $this->redirectToRoute('frontend.home.page', $params);}
in
vendor/shopware/storefront/Controller/CartLineItemController.php
->
createActionResponse
(line 336)
}} catch (ProductNotFoundException|RoutingException) {$this->addFlash(self::DANGER, $this->trans('error.addToCartError'));}return $this->createActionResponse($request);});}private function traceErrors(Cart $cart): bool{
in
vendor/shopware/core/Profiling/Profiler.php
->
Shopware\Storefront\Controller\{closure}
(line 67)
try {foreach (self::$profilers as $profiler) {$profiler->start($name, $category, $tags);}$result = $closure();} finally {foreach (self::$profilers as $profiler) {$profiler->stop($name);}}
in
vendor/shopware/storefront/Controller/CartLineItemController.php
::
trace
(line 286)
* ]*/#[Route(path: '/checkout/line-item/add', name: 'frontend.checkout.line-item.add', defaults: ['XmlHttpRequest' => true], methods: ['POST'])]public function addLineItems(Cart $cart, RequestDataBag $requestDataBag, Request $request, SalesChannelContext $context): Response{return Profiler::trace('cart::add-line-item', function () use ($cart, $requestDataBag, $request, $context) {/** @var RequestDataBag|null $lineItems */$lineItems = $requestDataBag->get('lineItems');if (!$lineItems) {throw RoutingException::missingRequestParameter('lineItems');}
in
vendor/symfony/http-kernel/HttpKernel.php
->
addLineItems
(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;// These headers drive how the body is restored before sending the response.// Only the store and the surrogate may set them, never the backend.$response->headers->remove('X-Body-File');
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
forward
(line 278)
*/protected function pass(Request $request, bool $catch = false): Response{$this->record($request, 'pass');return $this->forward($request, $catch);}/*** Invalidates non-safe methods (like POST, PUT, and DELETE).*
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
pass
(line 292)
** @see RFC2616 13.10*/protected function invalidate(Request $request, bool $catch = false): Response{$response = $this->pass($request, $catch);// invalidate only when the response is successfulif ($response->isSuccessful() || $response->isRedirect()) {try {$this->store->invalidate($request);
in
vendor/symfony/http-kernel/HttpCache/HttpCache.php
->
invalidate
(line 206)
}$this->traces[$this->getTraceKey($request)] = [];if (!$request->isMethodSafe()) {$response = $this->invalidate($request, $catch);} elseif ($request->headers->has('expect') || !$request->isMethodCacheable()) {$response = $this->pass($request, $catch);} elseif ($this->options['allow_reload'] && $request->isNoCache()) {/*If allow_reload is configured and the client requests "Cache-Control: no-cache",
in
vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php
->
handle
(line 66)
// 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 136)
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());
use Shopware\Core\Installer\InstallerKernel;use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;$_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 22:41:28 | php |
User Deprecated: Method "Symfony\Component\DependencyInjection\Extension\ExtensionInterface::load()" might add "void" as a native return type declaration in the future. Do the same in implementation "Frosh\DevelopmentHelper\Component\DependencyInjection\FroshDevelopmentHelperExtension" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 22:41:28 | 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": {}
}
|
| DEBUG 22:41:28 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\HttpCacheKeyEvent" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::disableCacheForAffiliateTracking". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\HttpCacheKeyEvent",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::disableCacheForAffiliateTracking"
}
|
| DEBUG 22:41:28 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Framework\Adapter\Cache\CacheTagCollector::__invoke". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
"listener": "Shopware\\Core\\Framework\\Adapter\\Cache\\CacheTagCollector::__invoke"
}
|
| DEBUG 22:41:28 | event |
Notified event "Shopware\Core\Framework\Adapter\Cache\Event\AddCacheTagEvent" to listener "Shopware\Core\Profiling\Subscriber\CacheTagCollectorSubscriber::add". {
"event": "Shopware\\Core\\Framework\\Adapter\\Cache\\Event\\AddCacheTagEvent",
"listener": "Shopware\\Core\\Profiling\\Subscriber\\CacheTagCollectorSubscriber::add"
}
|
| INFO 22:41:28 | cache |
Lock acquired, now computing item "system-config-" {
"key": "system-config-"
}
|
| INFO 22:41:28 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "db52cc"
},
"request_uri": "https://www.banholzerundwenz.de/_profiler/db52cc",
"method": "GET"
}
|
| DEBUG 22:41:28 | 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 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 22:41:28 | 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 22:41:28 | 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 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::startSession". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::startSession"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteParamsCleanupListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteParamsCleanupListener::__invoke"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Twig\TwigDateRequestListener::__invoke". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Twig\\TwigDateRequestListener::__invoke"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\CoreSubscriber::initializeCspNonce". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\CoreSubscriber::initializeCspNonce"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::maintenanceResolver". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::maintenanceResolver"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Shopware\Storefront\Theme\Twig\ThemeNamespaceHierarchyBuilder::requestEvent". {
"event": "kernel.request",
"listener": "Shopware\\Storefront\\Theme\\Twig\\ThemeNamespaceHierarchyBuilder::requestEvent"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.request" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::request". {
"event": "kernel.request",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::request"
}
|
| INFO 22:41:28 | php |
User Deprecated: The "Shopware\Core\Framework\Adapter\Twig\TwigEnvironment" class is considered internal. It may change without further notice. You should not use it from "Frosh\DevelopmentHelper\Component\Profiler\TwigDecorator". {
"exception": {}
}
|
| INFO 22:41:28 | php |
User Deprecated: The "Symfony\Bridge\Twig\DataCollector\TwigDataCollector" class is considered final. It may change without further notice as of its next major version. You should not extend it from "Frosh\DevelopmentHelper\Component\Profiler\TwigDataCollector". {
"exception": {}
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Mcp\Authentication\McpAuthenticationListener::authenticate". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Mcp\\Authentication\\McpAuthenticationListener::authenticate"
}
|
| DEBUG 22:41:28 | 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 22:41:28 | 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 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\ContextResolverListener::resolveContext". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\ContextResolverListener::resolveContext"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteEventSubscriber::controller". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteEventSubscriber::controller"
}
|
| DEBUG 22:41:28 | 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 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Framework\Routing\RouteScopeListener::checkScope". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Framework\\Routing\\RouteScopeListener::checkScope"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Routing\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Routing\\StorefrontSubscriber::preventPageLoadingFromXmlHttpRequest"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\Captcha\CaptchaRouteListener::validateCaptcha". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\Captcha\\CaptchaRouteListener::validateCaptcha"
}
|
| DEBUG 22:41:28 | 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 22:41:28 | 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 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Core\Content\ProductExport\Tracking\SalesChannelTrackingListener::storeReferralCode". {
"event": "kernel.controller",
"listener": "Shopware\\Core\\Content\\ProductExport\\Tracking\\SalesChannelTrackingListener::storeReferralCode"
}
|
| DEBUG 22:41:28 | event |
Notified event "kernel.controller" to listener "Shopware\Storefront\Framework\AffiliateTracking\AffiliateTrackingListener::checkAffiliateTracking". {
"event": "kernel.controller",
"listener": "Shopware\\Storefront\\Framework\\AffiliateTracking\\AffiliateTrackingListener::checkAffiliateTracking"
}
|
| DEBUG 22:41:28 | 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 22:41:28 | 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 22:41:28 | event |
Notified event "kernel.controller_arguments" to listener "ContainerGSBpz60\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerGSBpz60\\RequestPayloadValueResolverGhost8c80924::onKernelControllerArguments"
}
|
| DEBUG 22:41:28 | 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"
}
|
Stack Trace
|
MissingMandatoryParametersException
|
|---|
Symfony\Component\Routing\Exception\MissingMandatoryParametersException:
Some mandatory parameters are missing ("productId") to generate a URL for route "frontend.detail.page".
at vendor/symfony/routing/Generator/UrlGenerator.php:163
at Symfony\Component\Routing\Generator\UrlGenerator->doGenerate(array('productId' => 0), array('_routeScope' => array('storefront'), '_httpCache' => true, '_controller' => 'Shopware\\Storefront\\Controller\\ProductController::index'), array(), array(array('variable', '/', '[^/]++', 'productId', true), array('text', '/detail')), array(), 'frontend.detail.page', 1, array(), array())
(vendor/symfony/routing/Generator/CompiledUrlGenerator.php:69)
at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate('frontend.detail.page', array(), 1)
(vendor/symfony/routing/Router.php:172)
at Symfony\Component\Routing\Router->generate('frontend.detail.page', array())
(vendor/shopware/storefront/Framework/Routing/Router.php:143)
at Shopware\Storefront\Framework\Routing\Router->generate('frontend.detail.page', array(), 1)
(vendor/symfony/framework-bundle/Controller/AbstractController.php:108)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->generateUrl('frontend.detail.page', array())
(vendor/symfony/framework-bundle/Controller/AbstractController.php:142)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->redirectToRoute('frontend.detail.page', array(), 302)
(vendor/shopware/storefront/Controller/StorefrontController.php:282)
at Shopware\Storefront\Controller\StorefrontController->redirectToRoute('frontend.detail.page', array())
(vendor/shopware/storefront/Controller/StorefrontController.php:133)
at Shopware\Storefront\Controller\StorefrontController->createActionResponse(object(Request))
(vendor/shopware/storefront/Controller/CartLineItemController.php:336)
at Shopware\Storefront\Controller\CartLineItemController->Shopware\Storefront\Controller\{closure}()
(vendor/shopware/core/Profiling/Profiler.php:67)
at Shopware\Core\Profiling\Profiler::trace('cart::add-line-item', object(Closure))
(vendor/shopware/storefront/Controller/CartLineItemController.php:286)
at Shopware\Storefront\Controller\CartLineItemController->addLineItems(object(Cart), object(RequestDataBag), object(Request), object(SalesChannelContext))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/shopware/core/Framework/Adapter/Kernel/HttpKernel.php:72)
at Shopware\Core\Framework\Adapter\Kernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 1, true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:476)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->forward(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:278)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->pass(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:292)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->invalidate(object(Request), true)
(vendor/symfony/http-kernel/HttpCache/HttpCache.php:206)
at Symfony\Component\HttpKernel\HttpCache\HttpCache->handle(object(Request), 1, true)
(vendor/shopware/core/Framework/Adapter/Kernel/HttpCacheKernel.php:66)
at Shopware\Core\Framework\Adapter\Kernel\HttpCacheKernel->handle(object(Request), 1, true)
(vendor/shopware/core/Kernel.php:136)
at Shopware\Core\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/html/shopware/vendor/autoload_runtime.php')
(public/index.php:11)
|