bilenbiliyor.com Open in urlscan Pro
206.189.61.126  Public Scan

URL: http://bilenbiliyor.com/images/mainf.gif?1c157=230062
Submission: On May 17 via api from BY — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

SYMFONY EXCEPTION

Symfony Docs
Symfony Support


RESOURCENOTFOUNDEXCEPTION NOTFOUNDHTTPEXCEPTION


HTTP 404 NOT FOUND


NO ROUTE FOUND FOR "GET /IMAGES/MAINF.GIF"


 * Exceptions 2
 * Logs 1
 * Stack Traces 2


EXCEPTIONS 2


SYMFONY\COMPONENT\HTTPKERNEL\EXCEPTION\ NOTFOUNDHTTPEXCEPTION

in vendor/symfony/http-kernel/EventListener/RouterListener.php (line 136)
 131. 
 132.             if ($referer = $request->headers->get('referer')) {
 133.                 $message .= sprintf(' (from "%s")', $referer);
 134.             }
 135. 
 136.             throw new NotFoundHttpException($message, $e);
 137.         } catch (MethodNotAllowedException $e) {
 138.             $message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getPathInfo(), implode(', ', $e->getAllowedMethods()));
 139. 
 140.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
 141.         }

in vendor/symfony/event-dispatcher/Debug/WrappedListener.php -> onKernelRequest
(line 117)
 112.         $this->called = true;
 113.         $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
 114. 
 115.         $e = $this->stopwatch->start($this->name, 'event_listener');
 116. 
 117.         ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
 118. 
 119.         if ($e->isStarted()) {
 120.             $e->stop();
 121.         }
 122. 

in vendor/symfony/event-dispatcher/EventDispatcher.php -> __invoke (line 230)
 225. 
 226.         foreach ($listeners as $listener) {
 227.             if ($stoppable && $event->isPropagationStopped()) {
 228.                 break;
 229.             }
 230.             $listener($event, $eventName, $this);
 231.         }
 232.     }
 233. 
 234.     /**
 235.      * Sorts the internal list of listeners for the given event by priority.

in vendor/symfony/event-dispatcher/EventDispatcher.php -> callListeners (line
59)
 54.         } else {
 55.             $listeners = $this->getListeners($eventName);
 56.         }
 57. 
 58.         if ($listeners) {
 59.             $this->callListeners($listeners, $eventName, $event);
 60.         }
 61. 
 62.         return $event;
 63.     }
 64. 

in vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php ->
dispatch (line 151)
 146.         try {
 147.             $this->beforeDispatch($eventName, $event);
 148.             try {
 149.                 $e = $this->stopwatch->start($eventName, 'section');
 150.                 try {
 151.                     $this->dispatcher->dispatch($event, $eventName);
 152.                 } finally {
 153.                     if ($e->isStarted()) {
 154.                         $e->stop();
 155.                     }
 156.                 }

in vendor/symfony/http-kernel/HttpKernel.php -> dispatch (line 133)
 128.     {
 129.         $this->requestStack->push($request);
 130. 
 131.         // request
 132.         $event = new RequestEvent($this, $request, $type);
 133.         $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
 134. 
 135.         if ($event->hasResponse()) {
 136.             return $this->filterResponse($event->getResponse(), $request, $type);
 137.         }
 138. 

in vendor/symfony/http-kernel/HttpKernel.php -> handleRaw (line 79)
 74.     public function handle(Request $request, int $type = HttpKernelInterface::MASTER_REQUEST, bool $catch = true)
 75.     {
 76.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
 77. 
 78.         try {
 79.             return $this->handleRaw($request, $type);
 80.         } catch (\Exception $e) {
 81.             if ($e instanceof RequestExceptionInterface) {
 82.                 $e = new BadRequestHttpException($e->getMessage(), $e);
 83.             }
 84.             if (false === $catch) {

in vendor/symfony/http-kernel/Kernel.php -> handle (line 196)
 191.         $this->boot();
 192.         ++$this->requestStackSize;
 193.         $this->resetServices = true;
 194. 
 195.         try {
 196.             return $this->getHttpKernel()->handle($request, $type, $catch);
 197.         } finally {
 198.             --$this->requestStackSize;
 199.         }
 200.     }
 201. 

Kernel->handle() in public/index.php (line 28)
 23.     Request::setTrustedHosts([$trustedHosts]);
 24. }
 25. 
 26. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
 27. $request = Request::createFromGlobals();
 28. $response = $kernel->handle($request);
 29. $response->send();
 30. $kernel->terminate($request, $response);
 31. 


SYMFONY\COMPONENT\ROUTING\EXCEPTION\ RESOURCENOTFOUNDEXCEPTION

No routes found for "/images/mainf.gif/".

in vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php (line 70)
 65.             if ($allowSchemes) {
 66.                 goto redirect_scheme;
 67.             }
 68.         }
 69. 
 70.         throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));
 71.     }
 72. 
 73.     private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
 74.     {
 75.         $allow = $allowSchemes = [];

in vendor/symfony/routing/Matcher/UrlMatcher.php -> match (line 106)
 101.      */
 102.     public function matchRequest(Request $request)
 103.     {
 104.         $this->request = $request;
 105. 
 106.         $ret = $this->match($request->getPathInfo());
 107. 
 108.         $this->request = null;
 109. 
 110.         return $ret;
 111.     }

in vendor/symfony/routing/Router.php -> matchRequest (line 257)
 252.         if (!$matcher instanceof RequestMatcherInterface) {
 253.             // fallback to the default UrlMatcherInterface
 254.             return $matcher->match($request->getPathInfo());
 255.         }
 256. 
 257.         return $matcher->matchRequest($request);
 258.     }
 259. 
 260.     /**
 261.      * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
 262.      *

in vendor/symfony/http-kernel/EventListener/RouterListener.php -> matchRequest
(line 112)
 107. 
 108.         // add attributes based on the request (routing)
 109.         try {
 110.             // matching a request is more powerful than matching a URL path + context, so try that first
 111.             if ($this->matcher instanceof RequestMatcherInterface) {
 112.                 $parameters = $this->matcher->matchRequest($request);
 113.             } else {
 114.                 $parameters = $this->matcher->match($request->getPathInfo());
 115.             }
 116. 
 117.             if (null !== $this->logger) {

in vendor/symfony/event-dispatcher/Debug/WrappedListener.php -> onKernelRequest
(line 117)
 112.         $this->called = true;
 113.         $this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
 114. 
 115.         $e = $this->stopwatch->start($this->name, 'event_listener');
 116. 
 117.         ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
 118. 
 119.         if ($e->isStarted()) {
 120.             $e->stop();
 121.         }
 122. 

in vendor/symfony/event-dispatcher/EventDispatcher.php -> __invoke (line 230)
 225. 
 226.         foreach ($listeners as $listener) {
 227.             if ($stoppable && $event->isPropagationStopped()) {
 228.                 break;
 229.             }
 230.             $listener($event, $eventName, $this);
 231.         }
 232.     }
 233. 
 234.     /**
 235.      * Sorts the internal list of listeners for the given event by priority.

in vendor/symfony/event-dispatcher/EventDispatcher.php -> callListeners (line
59)
 54.         } else {
 55.             $listeners = $this->getListeners($eventName);
 56.         }
 57. 
 58.         if ($listeners) {
 59.             $this->callListeners($listeners, $eventName, $event);
 60.         }
 61. 
 62.         return $event;
 63.     }
 64. 

in vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php ->
dispatch (line 151)
 146.         try {
 147.             $this->beforeDispatch($eventName, $event);
 148.             try {
 149.                 $e = $this->stopwatch->start($eventName, 'section');
 150.                 try {
 151.                     $this->dispatcher->dispatch($event, $eventName);
 152.                 } finally {
 153.                     if ($e->isStarted()) {
 154.                         $e->stop();
 155.                     }
 156.                 }

in vendor/symfony/http-kernel/HttpKernel.php -> dispatch (line 133)
 128.     {
 129.         $this->requestStack->push($request);
 130. 
 131.         // request
 132.         $event = new RequestEvent($this, $request, $type);
 133.         $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
 134. 
 135.         if ($event->hasResponse()) {
 136.             return $this->filterResponse($event->getResponse(), $request, $type);
 137.         }
 138. 

in vendor/symfony/http-kernel/HttpKernel.php -> handleRaw (line 79)
 74.     public function handle(Request $request, int $type = HttpKernelInterface::MASTER_REQUEST, bool $catch = true)
 75.     {
 76.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
 77. 
 78.         try {
 79.             return $this->handleRaw($request, $type);
 80.         } catch (\Exception $e) {
 81.             if ($e instanceof RequestExceptionInterface) {
 82.                 $e = new BadRequestHttpException($e->getMessage(), $e);
 83.             }
 84.             if (false === $catch) {

in vendor/symfony/http-kernel/Kernel.php -> handle (line 196)
 191.         $this->boot();
 192.         ++$this->requestStackSize;
 193.         $this->resetServices = true;
 194. 
 195.         try {
 196.             return $this->getHttpKernel()->handle($request, $type, $catch);
 197.         } finally {
 198.             --$this->requestStackSize;
 199.         }
 200.     }
 201. 

Kernel->handle() in public/index.php (line 28)
 23.     Request::setTrustedHosts([$trustedHosts]);
 24. }
 25. 
 26. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
 27. $request = Request::createFromGlobals();
 28. $response = $kernel->handle($request);
 29. $response->send();
 30. $kernel->terminate($request, $response);
 31. 


LOGS 1

Level
 * Emergency
 * Alert
 * Critical
 * Error
 * Warning
 * Notice
 * Info
 * Debug

Channel
 * event
 * request

Message DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}

ERROR 17:15:15 request Uncaught PHP Exception
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found
for "GET /images/mainf.gif"" at
/var/www/soylu.net/root/vendor/symfony/http-kernel/EventListener/RouterListener.php
line 136

{
    "exception": {}
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".

{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.request" to listener
"Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".

{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}

DEBUG 17:15:15 event Notified event "kernel.controller" to listener
"Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".

{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}

DEBUG 17:15:15 event Notified event "kernel.controller" to listener
"Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".

{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}

DEBUG 17:15:15 event Notified event "kernel.controller" to listener
"Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".

{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}

DEBUG 17:15:15 event Notified event "kernel.controller" to listener
"Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".

{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}

DEBUG 17:15:15 event Notified event "kernel.controller" to listener
"Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".

{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}

DEBUG 17:15:15 event Notified event "kernel.controller" to listener
"Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".

{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}

DEBUG 17:15:15 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"
}

DEBUG 17:15:15 event Notified event "kernel.controller_arguments" to listener
"Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".

{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}

DEBUG 17:15:15 event Notified event "kernel.controller_arguments" to listener
"Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".

{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}


STACK TRACES 2


[2/2] NOTFOUNDHTTPEXCEPTION

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET /images/mainf.gif"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:136
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:151)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:133)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:79)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:196)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:28)                


[1/2] RESOURCENOTFOUNDEXCEPTION

Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/images/mainf.gif/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
     (vendor/symfony/routing/Matcher/UrlMatcher.php:106)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
     (vendor/symfony/routing/Router.php:257)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:112)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:151)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:133)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:79)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:196)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:28)