Symfony Exception

BadRequestHttpException

HTTP 400 Bad Request

Signed url does not pass the sign check for path "media/original/renovation-meubles-bourg-en-bresse-1-224355.jpg" and filter "dynamic" and runtime config {"format":"T1000_625"}

Exception

Symfony\Component\HttpKernel\Exception\ BadRequestHttpException

  1.             if (!is_array($filters)) {
  2.                 throw new NotFoundHttpException(sprintf('Filters must be an array. Value was "%s"'$filters));
  3.             }
  4.             if (true !== $this->signer->check($hash$path$filters)) {
  5.                 throw new BadRequestHttpException(sprintf(
  6.                     'Signed url does not pass the sign check for path "%s" and filter "%s" and runtime config %s',
  7.                     $path,
  8.                     $filter,
  9.                     json_encode($filters)
  10.                 ));
ImagineController->filterRuntimeAction(object(Request), 'jsuCuKlO', 'media/original/renovation-meubles-bourg-en-bresse-1-224355.jpg', 'dynamic') in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php (line 151)
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response = \call_user_func_array($controller$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
HttpKernel->handleRaw(object(Request), 1) in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php (line 68)
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
HttpKernel->handle(object(Request), 1, true) in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php (line 200)
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app.php (line 23)
  1. $request Request::createFromGlobals();
  2. Request::setTrustedProxies(
  3.     ['192.0.0.1''10.0.0.0/8'],
  4.     Request::HEADER_X_FORWARDED_ALL
  5. );
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Logs

No log messages

Stack Trace

BadRequestHttpException

Symfony\Component\HttpKernel\Exception\BadRequestHttpException:
Signed url does not pass the sign check for path "media/original/renovation-meubles-bourg-en-bresse-1-224355.jpg" and filter "dynamic" and runtime config {"format":"T1000_625"}

  at vendor/liip/imagine-bundle/Controller/ImagineController.php:160
  at Liip\ImagineBundle\Controller\ImagineController->filterRuntimeAction(object(Request), 'jsuCuKlO', 'media/original/renovation-meubles-bourg-en-bresse-1-224355.jpg', 'dynamic')
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:200)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app.php:23)