Symfony Exception

No route found for "GET http://smalsyn.net/js/"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.             if ($referer $request->headers->get('referer')) {
  2.                 $message .= sprintf(' (from "%s")'$referer);
  3.             }
  4.             throw new NotFoundHttpException($message$e);
  5.         } catch (MethodNotAllowedException $e) {
  6.             $message sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)'$request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', '$e->getAllowedMethods()));
  7.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message$e);
  8.         }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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.     {
  2.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $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) {
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/srv/www/smalsyn.net/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

None of the routers in the chain matched this request GET /js/?C=N;O=D HTTP/1.1 Accept: */* Authorization: Host: smalsyn.net User-Agent: claudebot X-Php-Ob-Level: 1

  1.         $info $request
  2.             "this request\n$request"
  3.             "url '$pathinfo'";
  4.         throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
  5.     }
  6.     /**
  7.      * {@inheritdoc}
  8.      *
  1.      *
  2.      * Loops through all routes and tries to match the passed request.
  3.      */
  4.     public function matchRequest(Request $request)
  5.     {
  6.         return $this->doMatch($request->getPathInfo(), $request);
  7.     }
  8.     /**
  9.      * Loops through all routers and tries to match the passed request or url.
  10.      *
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             if (null !== $this->logger) {
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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.     {
  2.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $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) {
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/srv/www/smalsyn.net/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 1

Level Channel Message
INFO 10:35:56 php Deprecated: Return type of eZ\Publish\Core\MVC\Symfony\SiteAccess::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice
{
    "exception": {}
}
INFO 10:35:56 php Deprecated: EzSystems\EzPlatformDesignEngine\Templating\TemplatePathRegistry implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)
{
    "exception": {}
}
INFO 10:35:56 php User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead.
{
    "exception": {}
}
INFO 10:35:56 php User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "twig_mode" to "lazy" instead.
{
    "exception": {}
}
INFO 10:35:56 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:35:56 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 10:35:56 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
NOTICE 10:35:56 app Siteaccess not matched against configuration, returning default siteaccess.
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\SiteAccessListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\SiteAccessListener::onSiteAccessMatch"
}
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\SessionSetDynamicNameListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\SessionSetDynamicNameListener::onSiteAccessMatch"
}
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\SessionInitByPostListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\SessionInitByPostListener::onSiteAccessMatch"
}
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\RoutingListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\RoutingListener::onSiteAccessMatch"
}
DEBUG 10:35:56 app Router eZ\Bundle\EzPublishCoreBundle\Routing\DefaultRouter was not able to match, message "No routes found for "/js"."
DEBUG 10:35:56 doctrine SELECT u.id AS id, u.link AS link, u.is_alias AS is_alias, u.alias_redirects AS alias_redirects, u.is_original AS is_original, u.action AS action, u.action_type AS action_type, u.lang_mask AS lang_mask, u.text AS text, u.parent AS parent, u.text_md5 AS text_md5 FROM `ezurlalias_ml` u WHERE (u.text_md5 = ?) AND (u.parent = ?) LIMIT 1
{
    "1": "32981a13284db7a021131df49e6cd203",
    "2": 0
}
DEBUG 10:35:56 php Warning: symlink(): File exists
{
    "exception": {
        "severity": 2,
        "file": "/srv/www/smalsyn.net/vendor/symfony/cache/Adapter/FilesystemTagAwareAdapter.php",
        "line": 110,
        "trace": [
            {
                "file": "/srv/www/smalsyn.net/vendor/symfony/cache/Adapter/AbstractTagAwareAdapter.php",
                "line": 187,
                "function": "doSave",
                "class": "Symfony\\Component\\Cache\\Adapter\\FilesystemTagAwareAdapter",
                "type": "->"
            }
        ],
        "count": 1
    }
}
DEBUG 10:35:56 app Router eZ\Bundle\EzPublishCoreBundle\Routing\UrlAliasRouter was not able to match, message "Could not find 'URLAlias' with identifier 'js'"
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\EzPlatformRestBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EzSystems\\EzPlatformRestBundle\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Overblog\GraphQLBundle\EventListener\ClassLoaderListener::load".
{
    "event": "kernel.request",
    "listener": "Overblog\\GraphQLBundle\\EventListener\\ClassLoaderListener::load"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\RejectExplicitFrontControllerRequestsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\RejectExplicitFrontControllerRequestsListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\OriginalRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\OriginalRequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\PreviewRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\PreviewRequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventSubscriber\CrowdinRequestLocaleSubscriber::setInContextAcceptLanguage".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventSubscriber\\CrowdinRequestLocaleSubscriber::setInContextAcceptLanguage"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\PlatformHttpCacheBundle\EventSubscriber\UserContextSiteAccessMatchSubscriber::checkIfRequestForUserContextHash".
{
    "event": "kernel.request",
    "listener": "EzSystems\\PlatformHttpCacheBundle\\EventSubscriber\\UserContextSiteAccessMatchSubscriber::checkIfRequestForUserContextHash"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishIOBundle\EventListener\StreamFileListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishIOBundle\\EventListener\\StreamFileListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\IndexRequestListener::onKernelRequestIndex".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\IndexRequestListener::onKernelRequestIndex"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
ERROR 10:35:56 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET http://smalsyn.net/js/"" at /srv/www/smalsyn.net/vendor/symfony/http-kernel/EventListener/RouterListener.php line 136
{
    "exception": {}
}
INFO 10:35:56 php Deprecated: Return type of FOS\HttpCache\Exception\ExceptionCollection::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice
{
    "exception": {}
}
INFO 10:35:56 php Deprecated: Return type of FOS\HttpCache\Exception\ExceptionCollection::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice
{
    "exception": {}
}
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\SiteAccessListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\SiteAccessListener::onSiteAccessMatch"
}
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\SessionSetDynamicNameListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\SessionSetDynamicNameListener::onSiteAccessMatch"
}
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\SessionInitByPostListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\SessionInitByPostListener::onSiteAccessMatch"
}
DEBUG 10:35:56 event Notified event "ezpublish.siteaccess" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\RoutingListener::onSiteAccessMatch".
{
    "event": "ezpublish.siteaccess",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\RoutingListener::onSiteAccessMatch"
}
INFO 10:35:56 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\EzPlatformRestBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EzSystems\\EzPlatformRestBundle\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Overblog\GraphQLBundle\EventListener\ClassLoaderListener::load".
{
    "event": "kernel.request",
    "listener": "Overblog\\GraphQLBundle\\EventListener\\ClassLoaderListener::load"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\RejectExplicitFrontControllerRequestsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\RejectExplicitFrontControllerRequestsListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\OriginalRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\OriginalRequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\PreviewRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\PreviewRequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventSubscriber\CrowdinRequestLocaleSubscriber::setInContextAcceptLanguage".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventSubscriber\\CrowdinRequestLocaleSubscriber::setInContextAcceptLanguage"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\PlatformHttpCacheBundle\EventSubscriber\UserContextSiteAccessMatchSubscriber::checkIfRequestForUserContextHash".
{
    "event": "kernel.request",
    "listener": "EzSystems\\PlatformHttpCacheBundle\\EventSubscriber\\UserContextSiteAccessMatchSubscriber::checkIfRequestForUserContextHash"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishIOBundle\EventListener\StreamFileListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishIOBundle\\EventListener\\StreamFileListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\IndexRequestListener::onKernelRequestIndex".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\IndexRequestListener::onKernelRequestIndex"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\PlatformHttpCacheBundle\EventSubscriber\RequestEventSubscriber::onKernelRequestForward".
{
    "event": "kernel.request",
    "listener": "EzSystems\\PlatformHttpCacheBundle\\EventSubscriber\\RequestEventSubscriber::onKernelRequestForward"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\EzPlatformAdminUi\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EzSystems\\EzPlatformAdminUi\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\RequestEventListener::onKernelRequestForward".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\RequestEventListener::onKernelRequestForward"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\UserContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\UserContextListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Publish\Core\MVC\Symfony\Security\EventListener\SecurityListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "eZ\\Publish\\Core\\MVC\\Symfony\\Security\\EventListener\\SecurityListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\EzPlatformAdminUi\EventListener\RequestLocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EzSystems\\EzPlatformAdminUi\\EventListener\\RequestLocaleListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\RequestEventListener::onKernelRequestRedirect".
{
    "event": "kernel.request",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\RequestEventListener::onKernelRequestRedirect"
}
DEBUG 10:35:56 event Notified event "kernel.request" to listener "EzSystems\EzPlatformRestBundle\EventListener\CsrfListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EzSystems\\EzPlatformRestBundle\\EventListener\\CsrfListener::onKernelRequest"
}
DEBUG 10:35:56 event Notified event "kernel.controller" to listener "eZ\Bundle\EzPublishCoreBundle\EventListener\ViewControllerListener::getController".
{
    "event": "kernel.controller",
    "listener": "eZ\\Bundle\\EzPublishCoreBundle\\EventListener\\ViewControllerListener::getController"
}
DEBUG 10:35:56 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:35:56 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 10:35:56 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 10:35:56 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 10:35:56 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 10:35:56 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 10:35:56 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 10:35:56 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 10:35:56 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 http://smalsyn.net/js/"

  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:132)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:78)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:199)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:37)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/srv/www/smalsyn.net/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /js/?C=N;O=D HTTP/1.1
Accept:         */*
Authorization:  
Host:           smalsyn.net
User-Agent:     claudebot
X-Php-Ob-Level: 1



  at vendor/symfony-cmf/routing/src/ChainRouter.php:210
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->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:132)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:78)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:199)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:37)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/srv/www/smalsyn.net/vendor/autoload_runtime.php')
     (public/index.php:5)