https://ckdev.centrumkrzesel.pl/media/cache/resolve/textileThumb/images/parameters/6a98eedddb0eb6fc11c85d06b7d5d41e.jpg

Exceptions

Source image for path "images/parameters/6a98eedddb0eb6fc11c85d06b7d5d41e.jpg" could not be found

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.         } catch (NotLoadableException $exception) {
  2.             if (null !== $this->dataManager->getDefaultImageUrl($filter)) {
  3.                 return new RedirectResponse($this->dataManager->getDefaultImageUrl($filter));
  4.             }
  5.             throw new NotFoundHttpException(sprintf('Source image for path "%s" could not be found'$path));
  6.         } catch (NonExistingFilterException $exception) {
  7.             throw new NotFoundHttpException(sprintf('Requested non-existing filter "%s"'$filter));
  8.         } catch (RuntimeException $exception) {
  9.             throw new \RuntimeException(vsprintf('Unable to create image for path "%s" and filter "%s". Message was "%s"', [
  10.                 $hash sprintf('%s/%s'$hash$path) : $path,
  1.     public function filterAction(Request $request$path$filter)
  2.     {
  3.         $path PathHelper::urlPathToFilePath($path);
  4.         $resolver $request->get('resolver');
  5.         return $this->createRedirectResponse(function () use ($path$filter$resolver) {
  6.             return $this->filterService->getUrlOfFilteredImage($path$filter$resolver);
  7.         }, $path$filter);
  8.     }
  9.     /**
in vendor/symfony/http-kernel/HttpKernel.php->filterAction (line 150)
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'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) {
  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 public/index.php (line 49)
  1.         Request::setTrustedHosts([$trustedHosts]);
  2.     }
  3.     $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4.     $request Request::createFromGlobals();
  5.     $response $kernel->handle($request);
  6.     $response->send();
  7.     $kernel->terminate($request$response);
  8. } else {
  9.     echo '-';

Stack Trace

NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
Source image for path "images/parameters/6a98eedddb0eb6fc11c85d06b7d5d41e.jpg" could not be found

  at vendor/liip/imagine-bundle/Controller/ImagineController.php:147
  at Liip\ImagineBundle\Controller\ImagineController->createRedirectResponse(object(Closure), 'images/parameters/6a98eedddb0eb6fc11c85d06b7d5d41e.jpg', 'textileThumb')
     (vendor/liip/imagine-bundle/Controller/ImagineController.php:91)
  at Liip\ImagineBundle\Controller\ImagineController->filterAction(object(Request), 'images/parameters/6a98eedddb0eb6fc11c85d06b7d5d41e.jpg', 'textileThumb')
     (vendor/symfony/http-kernel/HttpKernel.php:150)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:67)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:49)