https://stratec-stage.bartenbach-server.de/company/about-us/files/inhalte/Header/corporate-compliance.jpg

Exceptions

Unused arguments: files, Header

  • Exceptions 2
  • Logs
  • Stack Traces 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.             case 'InternalServerErrorHttpException':
  2.                 return new InternalServerErrorHttpException($exception->getMessage(), $exception);
  3.             case 'NotFoundHttpException':
  4.                 return new NotFoundHttpException($exception->getMessage(), $exception);
  5.             case 'ServiceUnavailableHttpException':
  6.                 return new ServiceUnavailableHttpException(''$exception->getMessage(), $exception);
  7.             case 'UnauthorizedHttpException':
  1.         if (null === $class) {
  2.             return;
  3.         }
  4.         if (null !== ($httpException $this->convertToHttpException($exception$class))) {
  5.             $event->setThrowable($httpException);
  6.         }
  7.     }
  8.     private function getTargetClass(\Throwable $exception): ?string
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
in vendor/symfony/http-kernel/HttpKernel.php -> handleThrowable (line 86)
  1.                 $this->finishRequest($request$type);
  2.                 throw $e;
  3.             }
  4.             return $this->handleThrowable($e$request$type);
  5.         } finally {
  6.             $this->requestStack->pop();
  7.         }
  8.     }
  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() in public/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request Request::createFromGlobals();
  3. $kernel ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7.     $kernel->terminate($request$response);
  8. }
require('/var/www/vhosts_jail/stratec/var/www/vhosts/stratec/htdocs/stratec-stage.bartenbach-server.de/releases/126/public/index.php') in public/app.php (line 13)
  1.  * (c) Leo Feyer
  2.  *
  3.  * @license LGPL-3.0-or-later
  4.  */
  5. require __DIR__.'/index.php';

Contao\ UnusedArgumentsException

Unused arguments: files, Header

  1.         }
  2.         // Check whether all $_GET parameters have been used (see #4277)
  3.         if ($this->blnCheckRequest && Input::hasUnusedGet())
  4.         {
  5.             throw new UnusedArgumentsException('Unused arguments: ' implode(', 'Input::getUnusedGet()));
  6.         }
  7.         /** @var PageModel|null $objPage */
  8.         global $objPage;
  1.      *
  2.      * @return Response The response object
  3.      */
  4.     public function getResponse()
  5.     {
  6.         $this->compile();
  7.         $response = new Response($this->strBuffer);
  8.         $response->headers->set('Content-Type'$this->strContentType);
  9.         $response->setCharset(System::getContainer()->getParameter('kernel.charset'));
  1.      */
  2.     public function getResponse($blnCheckRequest=false$blnForceCacheHeaders=false)
  3.     {
  4.         $this->blnCheckRequest $blnCheckRequest;
  5.         $response parent::getResponse();
  6.         if ($blnForceCacheHeaders || === strncmp('fe_'$this->strTemplate3))
  7.         {
  8.             return $this->setCacheHeaders($response);
  9.         }
  1.      */
  2.     public function getResponse($objPage$blnCheckRequest=false)
  3.     {
  4.         $this->prepare($objPage);
  5.         $response $this->Template->getResponse($blnCheckRequest);
  6.         // Finalize the response context so it cannot be used anymore
  7.         System::getContainer()->get('contao.routing.response_context_accessor')->finalizeCurrentContext($response);
  8.         return $response;
  1.                 }
  2.                 return $objResponse;
  3.             }
  4.             return $objHandler->getResponse($objPagetrue);
  5.         }
  6.         // Render the error page (see #5570)
  7.         catch (UnusedArgumentsException $e)
  8.         {
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  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 ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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() in public/index.php (line 44)
  1. $loader = require __DIR__.'/../vendor/autoload.php';
  2. $request Request::createFromGlobals();
  3. $kernel ContaoKernel::fromRequest(dirname(__DIR__), $request);
  4. $response $kernel->handle($request);
  5. $response->send();
  6. if ($kernel instanceof TerminableInterface) {
  7.     $kernel->terminate($request$response);
  8. }
require('/var/www/vhosts_jail/stratec/var/www/vhosts/stratec/htdocs/stratec-stage.bartenbach-server.de/releases/126/public/index.php') in public/app.php (line 13)
  1.  * (c) Leo Feyer
  2.  *
  3.  * @license LGPL-3.0-or-later
  4.  */
  5. require __DIR__.'/index.php';