Error 404 Not Found

GET https://eureka.demo.eurekaenergyconsulting.com/robots.txt

Forwarded to ErrorController (0c751d)

Exceptions

No route found for "GET https://eureka.demo.eurekaenergyconsulting.com/robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#326
  -statusCode: 404
  -headers: []
}
  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->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. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST, ?ControllerMetadata &$controllerMetadata = null): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type, $controllerMetadata);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send(false);
  7. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8. fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/eureka/web/eureka.demo.eurekaenergyconsulting.com/public_html/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 static function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/robots.txt/".

  1. if ($allowSchemes) {
  2. goto redirect_scheme;
  3. }
  4. }
  5. throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8. {
  9. $allow = $allowSchemes = [];
  1. $this->request = $request;
  2. $originalContext = $this->context;
  3. $this->context = (clone $originalContext)->fromRequest($request);
  4. try {
  5. return $this->match($request->getPathInfo());
  6. } finally {
  7. $this->context = $originalContext;
  8. $this->request = null;
  9. }
  10. }
in vendor/symfony/routing/Router.php -> matchRequest (line 188)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9. */
  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. $this->logger?->info('Matched route "{route}".', [
  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. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST, ?ControllerMetadata &$controllerMetadata = null): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
  7. if ($event->hasResponse()) {
  8. return $this->filterResponse($event->getResponse(), $request, $type);
  9. }
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type, $controllerMetadata);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. $response->send(false);
  7. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
  8. fastcgi_finish_request();
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/home/eureka/web/eureka.demo.eurekaenergyconsulting.com/public_html/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 static function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 15:11:33 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "983a37"
    },
    "request_uri": "https://eureka.demo.eurekaenergyconsulting.com/_profiler/983a37",
    "method": "GET"
}
INFO 15:11:33 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "127.0.0.1",
        "port": 3306,
        "user": "root",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": [],
        "dbname": "eureka_demo",
        "serverVersion": "8.0.45",
        "charset": "utf8mb4"
    }
}
DEBUG 15:11:33 doctrine Executing query: SELECT t0.id AS id_1, t0.site_name AS site_name_2, t0.site_baseline AS site_baseline_3, t0.phone_benin1 AS phone_benin1_4, t0.phone_benin2 AS phone_benin2_5, t0.phone_france AS phone_france_6, t0.whatsapp AS whatsapp_7, t0.email AS email_8, t0.address AS address_9, t0.map_embed_url AS map_embed_url_10, t0.primary_color AS primary_color_11, t0.secondary_color AS secondary_color_12, t0.accent_color AS accent_color_13, t0.body_font AS body_font_14, t0.heading_font AS heading_font_15, t0.email_sender AS email_sender_16, t0.email_reply_to AS email_reply_to_17, t0.smtp_host AS smtp_host_18, t0.smtp_port AS smtp_port_19, t0.smtp_user AS smtp_user_20, t0.smtp_password AS smtp_password_21, t0.google_analytics_id AS google_analytics_id_22, t0.google_tag_manager_id AS google_tag_manager_id_23, t0.meta_pixel_id AS meta_pixel_id_24, t0.google_ads_id AS google_ads_id_25, t0.tiktok_pixel_id AS tiktok_pixel_id_26, t0.pinterest_tag_id AS pinterest_tag_id_27, t0.linkedin_insight_tag_id AS linkedin_insight_tag_id_28, t0.enable_live_chat AS enable_live_chat_29, t0.chat_provider AS chat_provider_30, t0.chat_widget_code AS chat_widget_code_31, t0.ai_provider AS ai_provider_32, t0.anthropic_api_key AS anthropic_api_key_33, t0.deepseek_api_key AS deepseek_api_key_34, t0.gemini_api_key AS gemini_api_key_35, t0.ai_default_model AS ai_default_model_36, t0.legal_name AS legal_name_37, t0.legal_form AS legal_form_38, t0.capital AS capital_39, t0.rccm AS rccm_40, t0.ifu AS ifu_41, t0.vat_number AS vat_number_42, t0.legal_address AS legal_address_43, t0.publication_director AS publication_director_44, t0.hosting_provider AS hosting_provider_45, t0.enable_captcha AS enable_captcha_46, t0.pwa_name AS pwa_name_47, t0.pwa_short_name AS pwa_short_name_48, t0.pwa_description AS pwa_description_49, t0.theme_color AS theme_color_50, t0.background_color AS background_color_51, t0.logo_id AS logo_id_52, t0.logo_light_id AS logo_light_id_53, t0.favicon_id AS favicon_id_54, t0.og_image_default_id AS og_image_default_id_55, t0.pwa_icon192_id AS pwa_icon192_id_56, t0.pwa_icon512_id AS pwa_icon512_id_57 FROM setting t0 LIMIT 1
{
    "sql": "SELECT t0.id AS id_1, t0.site_name AS site_name_2, t0.site_baseline AS site_baseline_3, t0.phone_benin1 AS phone_benin1_4, t0.phone_benin2 AS phone_benin2_5, t0.phone_france AS phone_france_6, t0.whatsapp AS whatsapp_7, t0.email AS email_8, t0.address AS address_9, t0.map_embed_url AS map_embed_url_10, t0.primary_color AS primary_color_11, t0.secondary_color AS secondary_color_12, t0.accent_color AS accent_color_13, t0.body_font AS body_font_14, t0.heading_font AS heading_font_15, t0.email_sender AS email_sender_16, t0.email_reply_to AS email_reply_to_17, t0.smtp_host AS smtp_host_18, t0.smtp_port AS smtp_port_19, t0.smtp_user AS smtp_user_20, t0.smtp_password AS smtp_password_21, t0.google_analytics_id AS google_analytics_id_22, t0.google_tag_manager_id AS google_tag_manager_id_23, t0.meta_pixel_id AS meta_pixel_id_24, t0.google_ads_id AS google_ads_id_25, t0.tiktok_pixel_id AS tiktok_pixel_id_26, t0.pinterest_tag_id AS pinterest_tag_id_27, t0.linkedin_insight_tag_id AS linkedin_insight_tag_id_28, t0.enable_live_chat AS enable_live_chat_29, t0.chat_provider AS chat_provider_30, t0.chat_widget_code AS chat_widget_code_31, t0.ai_provider AS ai_provider_32, t0.anthropic_api_key AS anthropic_api_key_33, t0.deepseek_api_key AS deepseek_api_key_34, t0.gemini_api_key AS gemini_api_key_35, t0.ai_default_model AS ai_default_model_36, t0.legal_name AS legal_name_37, t0.legal_form AS legal_form_38, t0.capital AS capital_39, t0.rccm AS rccm_40, t0.ifu AS ifu_41, t0.vat_number AS vat_number_42, t0.legal_address AS legal_address_43, t0.publication_director AS publication_director_44, t0.hosting_provider AS hosting_provider_45, t0.enable_captcha AS enable_captcha_46, t0.pwa_name AS pwa_name_47, t0.pwa_short_name AS pwa_short_name_48, t0.pwa_description AS pwa_description_49, t0.theme_color AS theme_color_50, t0.background_color AS background_color_51, t0.logo_id AS logo_id_52, t0.logo_light_id AS logo_light_id_53, t0.favicon_id AS favicon_id_54, t0.og_image_default_id AS og_image_default_id_55, t0.pwa_icon192_id AS pwa_icon192_id_56, t0.pwa_icon512_id AS pwa_icon512_id_57 FROM setting t0 LIMIT 1"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://eureka.demo.eurekaenergyconsulting.com/robots.txt"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:162)
  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:143)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/home/eureka/web/eureka.demo.eurekaenergyconsulting.com/public_html/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
     (vendor/symfony/routing/Matcher/UrlMatcher.php:93)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
     (vendor/symfony/routing/Router.php:188)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:129)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:162)
  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:143)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:34)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/home/eureka/web/eureka.demo.eurekaenergyconsulting.com/public_html/vendor/autoload_runtime.php')
     (public/index.php:5)