Error 404 Not Found

GET https://www.v3.pharmanexus.nl/robots.txt

Exceptions

No route found for "GET https://www.v3.pharmanexus.nl/robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#3171
  -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): 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);
  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. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/v3.pharmanexus.nl/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 /robots.txt HTTP/1.0 Accept: */* Accept-Encoding: gzip, br, zstd, deflate Connection: close Host: www.v3.pharmanexus.nl User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) X-Accel-Internal: /internal-nginx-static-location X-Php-Ob-Level: 1 X-Real-Ip: 216.73.216.143

  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): array
  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. $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): 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);
  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. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 32)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/v3.pharmanexus.nl/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

Level Channel Message
INFO 02:55:26 doctrine Connecting with parameters {params}
{
    "params": {
        "use_savepoints": true,
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "127.0.0.1",
        "port": 3306,
        "user": "pharmanexus_v3_usr",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": [],
        "dbname": "pharmanexus_v3",
        "serverVersion": "10.6.22-MariaDB",
        "charset": "utf8mb4"
    }
}
DEBUG 02:55:26 doctrine Executing query: SELECT s0_.`key` AS key_0, s0_.value AS value_1 FROM settings s0_
{
    "sql": "SELECT s0_.`key` AS key_0, s0_.value AS value_1 FROM settings s0_"
}
DEBUG 02:55:26 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.alias AS alias_3, t0.domain AS domain_4, t0.business AS business_5, t0.status AS status_6, t0.name_in_logo AS name_in_logo_7, t0.slogan AS slogan_8, t0.introduction AS introduction_9, t0.usp_title AS usp_title_10, t0.usps AS usps_11, t0.about_us AS about_us_12, t0.contact_email AS contact_email_13, t0.contact_phone AS contact_phone_14, t0.contact_phone_notes AS contact_phone_notes_15, t0.agb_code AS agb_code_16, t0.facebook_slug AS facebook_slug_17, t0.instagram_slug AS instagram_slug_18, t0.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_19, t0.terms_and_conditions AS terms_and_conditions_20, t0.privacy_policy AS privacy_policy_21, t0.settings AS settings_22, t0.gtm_id AS gtm_id_23, t0.logo_id AS logo_id_24, t0.hero_image_id AS hero_image_id_25, t0.introduction_image_id AS introduction_image_id_26, t0.hkz_qr_code_id AS hkz_qr_code_id_27, t0.main_location_id AS main_location_id_28, t0.specialist_role_id AS specialist_role_id_29, t0.main_menu_id AS main_menu_id_30, t0.theme_id AS theme_id_31 FROM portal t0 WHERE t0.domain = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.alias AS alias_3, t0.domain AS domain_4, t0.business AS business_5, t0.status AS status_6, t0.name_in_logo AS name_in_logo_7, t0.slogan AS slogan_8, t0.introduction AS introduction_9, t0.usp_title AS usp_title_10, t0.usps AS usps_11, t0.about_us AS about_us_12, t0.contact_email AS contact_email_13, t0.contact_phone AS contact_phone_14, t0.contact_phone_notes AS contact_phone_notes_15, t0.agb_code AS agb_code_16, t0.facebook_slug AS facebook_slug_17, t0.instagram_slug AS instagram_slug_18, t0.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_19, t0.terms_and_conditions AS terms_and_conditions_20, t0.privacy_policy AS privacy_policy_21, t0.settings AS settings_22, t0.gtm_id AS gtm_id_23, t0.logo_id AS logo_id_24, t0.hero_image_id AS hero_image_id_25, t0.introduction_image_id AS introduction_image_id_26, t0.hkz_qr_code_id AS hkz_qr_code_id_27, t0.main_location_id AS main_location_id_28, t0.specialist_role_id AS specialist_role_id_29, t0.main_menu_id AS main_menu_id_30, t0.theme_id AS theme_id_31 FROM portal t0 WHERE t0.domain = ? LIMIT 1",
    "params": {
        "1": "www.v3.pharmanexus.nl"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:26 doctrine Executing statement: SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.alias AS alias_2, p0_.domain AS domain_3, p0_.business AS business_4, p0_.status AS status_5, p0_.name_in_logo AS name_in_logo_6, p0_.slogan AS slogan_7, p0_.introduction AS introduction_8, p0_.usp_title AS usp_title_9, p0_.usps AS usps_10, p0_.about_us AS about_us_11, p0_.contact_email AS contact_email_12, p0_.contact_phone AS contact_phone_13, p0_.contact_phone_notes AS contact_phone_notes_14, p0_.agb_code AS agb_code_15, p0_.facebook_slug AS facebook_slug_16, p0_.instagram_slug AS instagram_slug_17, p0_.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_18, p0_.terms_and_conditions AS terms_and_conditions_19, p0_.privacy_policy AS privacy_policy_20, p0_.settings AS settings_21, p0_.gtm_id AS gtm_id_22, p1_.id AS id_23, p1_.short_description_override AS short_description_override_24, p1_.medium_description_override AS medium_description_override_25, p1_.long_description_override AS long_description_override_26, p1_.extra_info AS extra_info_27, p1_.active AS active_28, p2_.id AS id_29, p2_.name AS name_30, p2_.short_description AS short_description_31, p2_.medium_description AS medium_description_32, p2_.long_description AS long_description_33, p2_.cta_label AS cta_label_34, p2_.icon AS icon_35, p2_.page_content AS page_content_36, p2_.meta_title AS meta_title_37, p2_.meta_description AS meta_description_38, p2_.status AS status_39, p2_.product_variant AS product_variant_40, p2_.engagement_method AS engagement_method_41, p2_.config AS config_42, p3_.id AS id_43, p3_.extra_info AS extra_info_44, p3_.active AS active_45, l4_.id AS id_46, l4_.type AS type_47, l4_.name AS name_48, l4_.contact_email AS contact_email_49, l4_.contact_phone AS contact_phone_50, l4_.opening_hours AS opening_hours_51, l4_.alt_opening_hours AS alt_opening_hours_52, l4_.street AS street_53, l4_.number AS number_54, l4_.number_addition AS number_addition_55, l4_.complement AS complement_56, l4_.neighborhood AS neighborhood_57, l4_.city AS city_58, l4_.province AS province_59, l4_.state AS state_60, l4_.zip AS zip_61, l4_.country AS country_62, p0_.logo_id AS logo_id_63, p0_.hero_image_id AS hero_image_id_64, p0_.introduction_image_id AS introduction_image_id_65, p0_.hkz_qr_code_id AS hkz_qr_code_id_66, p0_.main_location_id AS main_location_id_67, p0_.specialist_role_id AS specialist_role_id_68, p0_.main_menu_id AS main_menu_id_69, p0_.theme_id AS theme_id_70, p1_.portal_id AS portal_id_71, p1_.product_id AS product_id_72, p2_.image_id AS image_id_73, p2_.downloadable_form_id AS downloadable_form_id_74, p3_.portal_id AS portal_id_75, p3_.location_id AS location_id_76 FROM portal p0_ LEFT JOIN portal_product p1_ ON p0_.id = p1_.portal_id LEFT JOIN product p2_ ON p1_.product_id = p2_.id LEFT JOIN portal_location p3_ ON p0_.id = p3_.portal_id LEFT JOIN location l4_ ON p3_.location_id = l4_.id WHERE p0_.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.alias AS alias_2, p0_.domain AS domain_3, p0_.business AS business_4, p0_.status AS status_5, p0_.name_in_logo AS name_in_logo_6, p0_.slogan AS slogan_7, p0_.introduction AS introduction_8, p0_.usp_title AS usp_title_9, p0_.usps AS usps_10, p0_.about_us AS about_us_11, p0_.contact_email AS contact_email_12, p0_.contact_phone AS contact_phone_13, p0_.contact_phone_notes AS contact_phone_notes_14, p0_.agb_code AS agb_code_15, p0_.facebook_slug AS facebook_slug_16, p0_.instagram_slug AS instagram_slug_17, p0_.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_18, p0_.terms_and_conditions AS terms_and_conditions_19, p0_.privacy_policy AS privacy_policy_20, p0_.settings AS settings_21, p0_.gtm_id AS gtm_id_22, p1_.id AS id_23, p1_.short_description_override AS short_description_override_24, p1_.medium_description_override AS medium_description_override_25, p1_.long_description_override AS long_description_override_26, p1_.extra_info AS extra_info_27, p1_.active AS active_28, p2_.id AS id_29, p2_.name AS name_30, p2_.short_description AS short_description_31, p2_.medium_description AS medium_description_32, p2_.long_description AS long_description_33, p2_.cta_label AS cta_label_34, p2_.icon AS icon_35, p2_.page_content AS page_content_36, p2_.meta_title AS meta_title_37, p2_.meta_description AS meta_description_38, p2_.status AS status_39, p2_.product_variant AS product_variant_40, p2_.engagement_method AS engagement_method_41, p2_.config AS config_42, p3_.id AS id_43, p3_.extra_info AS extra_info_44, p3_.active AS active_45, l4_.id AS id_46, l4_.type AS type_47, l4_.name AS name_48, l4_.contact_email AS contact_email_49, l4_.contact_phone AS contact_phone_50, l4_.opening_hours AS opening_hours_51, l4_.alt_opening_hours AS alt_opening_hours_52, l4_.street AS street_53, l4_.number AS number_54, l4_.number_addition AS number_addition_55, l4_.complement AS complement_56, l4_.neighborhood AS neighborhood_57, l4_.city AS city_58, l4_.province AS province_59, l4_.state AS state_60, l4_.zip AS zip_61, l4_.country AS country_62, p0_.logo_id AS logo_id_63, p0_.hero_image_id AS hero_image_id_64, p0_.introduction_image_id AS introduction_image_id_65, p0_.hkz_qr_code_id AS hkz_qr_code_id_66, p0_.main_location_id AS main_location_id_67, p0_.specialist_role_id AS specialist_role_id_68, p0_.main_menu_id AS main_menu_id_69, p0_.theme_id AS theme_id_70, p1_.portal_id AS portal_id_71, p1_.product_id AS product_id_72, p2_.image_id AS image_id_73, p2_.downloadable_form_id AS downloadable_form_id_74, p3_.portal_id AS portal_id_75, p3_.location_id AS location_id_76 FROM portal p0_ LEFT JOIN portal_product p1_ ON p0_.id = p1_.portal_id LEFT JOIN product p2_ ON p1_.product_id = p2_.id LEFT JOIN portal_location p3_ ON p0_.id = p3_.portal_id LEFT JOIN location l4_ ON p3_.location_id = l4_.id WHERE p0_.id = ?",
    "params": {
        "1": 1
    },
    "types": {
        "1": 1
    }
}
DEBUG 02:55:26 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.staticPrefix IN (?, ?, ?) ORDER BY t0.position ASC (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.staticPrefix IN (?, ?, ?) ORDER BY t0.position ASC",
    "params": {
        "1": "/_profiler/e94d3a",
        "2": "/_profiler",
        "3": "/"
    },
    "types": {
        "1": 2,
        "2": 2,
        "3": 2
    }
}
DEBUG 02:55:26 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message "No routes found for "/_profiler/e94d3a"."
INFO 02:55:26 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "e94d3a"
    },
    "request_uri": "https://www.v3.pharmanexus.nl/_profiler/e94d3a?panel=exception&type=request",
    "method": "GET"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Vweb\PharmaNexusBundle\Common\Infrastructure\DoctrineExtensions\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Vweb\\PharmaNexusBundle\\Common\\Infrastructure\\DoctrineExtensions\\LocaleListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Vweb\PharmaNexusBundle\Modules\Setup\Infrastructure\Symfony\EventSubscriber\SetupCheckSubscriber::checkSetupState".
{
    "event": "kernel.request",
    "listener": "Vweb\\PharmaNexusBundle\\Modules\\Setup\\Infrastructure\\Symfony\\EventSubscriber\\SetupCheckSubscriber::checkSetupState"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Vweb\PharmaNexusBundle\Application\EventSubscriber\ContextSetter::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Vweb\\PharmaNexusBundle\\Application\\EventSubscriber\\ContextSetter::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Vweb\PharmaNexusBundle\Infrastructure\EventListener\SessionExpirationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Vweb\\PharmaNexusBundle\\Infrastructure\\EventListener\\SessionExpirationListener::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.request" to listener "Vweb\PharmaNexusBundle\Modules\Theme\Infrastructure\ThemeRegistrationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Vweb\\PharmaNexusBundle\\Modules\\Theme\\Infrastructure\\ThemeRegistrationSubscriber::onKernelRequest"
}
DEBUG 02:55:27 event Notified event "kernel.controller" to listener "Symfony\UX\LiveComponent\EventListener\LiveComponentSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\UX\\LiveComponent\\EventListener\\LiveComponentSubscriber::onKernelController"
}
DEBUG 02:55:27 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 02:55:27 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 02:55:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
DEBUG 02:55:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 02:55:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 02:55:27 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 02:55:27 event Notified event "kernel.controller_arguments" to listener "Container8f0zFy9\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Container8f0zFy9\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 02:55:27 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 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler_font"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler_font' not found': No route found for name '_profiler_font'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler_home"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler_home' not found': No route found for name '_profiler_home'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler_search_results"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler_search_results' not found': No route found for name '_profiler_search_results'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler_search"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler_search' not found': No route found for name '_profiler_search'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.host AS host_1, t0.schemes AS schemes_2, t0.methods AS methods_3, t0.defaults AS defaults_4, t0.requirements AS requirements_5, t0.options AS options_6, t0.`condition` AS condition_7, t0.variable_pattern AS variable_pattern_8, t0.staticPrefix AS staticPrefix_9, t0.name AS name_10, t0.position AS position_11, t0.id AS id_12 FROM orm_routes t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was unable to generate route. Reason: 'Route '_profiler' not found': No route found for name '_profiler'
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.alias AS alias_3, t0.domain AS domain_4, t0.business AS business_5, t0.status AS status_6, t0.name_in_logo AS name_in_logo_7, t0.slogan AS slogan_8, t0.introduction AS introduction_9, t0.usp_title AS usp_title_10, t0.usps AS usps_11, t0.about_us AS about_us_12, t0.contact_email AS contact_email_13, t0.contact_phone AS contact_phone_14, t0.contact_phone_notes AS contact_phone_notes_15, t0.agb_code AS agb_code_16, t0.facebook_slug AS facebook_slug_17, t0.instagram_slug AS instagram_slug_18, t0.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_19, t0.terms_and_conditions AS terms_and_conditions_20, t0.privacy_policy AS privacy_policy_21, t0.settings AS settings_22, t0.gtm_id AS gtm_id_23, t0.logo_id AS logo_id_24, t0.hero_image_id AS hero_image_id_25, t0.introduction_image_id AS introduction_image_id_26, t0.hkz_qr_code_id AS hkz_qr_code_id_27, t0.main_location_id AS main_location_id_28, t0.specialist_role_id AS specialist_role_id_29, t0.main_menu_id AS main_menu_id_30, t0.theme_id AS theme_id_31 FROM portal t0 WHERE t0.domain = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.alias AS alias_3, t0.domain AS domain_4, t0.business AS business_5, t0.status AS status_6, t0.name_in_logo AS name_in_logo_7, t0.slogan AS slogan_8, t0.introduction AS introduction_9, t0.usp_title AS usp_title_10, t0.usps AS usps_11, t0.about_us AS about_us_12, t0.contact_email AS contact_email_13, t0.contact_phone AS contact_phone_14, t0.contact_phone_notes AS contact_phone_notes_15, t0.agb_code AS agb_code_16, t0.facebook_slug AS facebook_slug_17, t0.instagram_slug AS instagram_slug_18, t0.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_19, t0.terms_and_conditions AS terms_and_conditions_20, t0.privacy_policy AS privacy_policy_21, t0.settings AS settings_22, t0.gtm_id AS gtm_id_23, t0.logo_id AS logo_id_24, t0.hero_image_id AS hero_image_id_25, t0.introduction_image_id AS introduction_image_id_26, t0.hkz_qr_code_id AS hkz_qr_code_id_27, t0.main_location_id AS main_location_id_28, t0.specialist_role_id AS specialist_role_id_29, t0.main_menu_id AS main_menu_id_30, t0.theme_id AS theme_id_31 FROM portal t0 WHERE t0.domain = ? LIMIT 1",
    "params": {
        "1": "www.v3.pharmanexus.nl"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 doctrine Executing statement: SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.alias AS alias_2, p0_.domain AS domain_3, p0_.business AS business_4, p0_.status AS status_5, p0_.name_in_logo AS name_in_logo_6, p0_.slogan AS slogan_7, p0_.introduction AS introduction_8, p0_.usp_title AS usp_title_9, p0_.usps AS usps_10, p0_.about_us AS about_us_11, p0_.contact_email AS contact_email_12, p0_.contact_phone AS contact_phone_13, p0_.contact_phone_notes AS contact_phone_notes_14, p0_.agb_code AS agb_code_15, p0_.facebook_slug AS facebook_slug_16, p0_.instagram_slug AS instagram_slug_17, p0_.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_18, p0_.terms_and_conditions AS terms_and_conditions_19, p0_.privacy_policy AS privacy_policy_20, p0_.settings AS settings_21, p0_.gtm_id AS gtm_id_22, p1_.id AS id_23, p1_.short_description_override AS short_description_override_24, p1_.medium_description_override AS medium_description_override_25, p1_.long_description_override AS long_description_override_26, p1_.extra_info AS extra_info_27, p1_.active AS active_28, p2_.id AS id_29, p2_.name AS name_30, p2_.short_description AS short_description_31, p2_.medium_description AS medium_description_32, p2_.long_description AS long_description_33, p2_.cta_label AS cta_label_34, p2_.icon AS icon_35, p2_.page_content AS page_content_36, p2_.meta_title AS meta_title_37, p2_.meta_description AS meta_description_38, p2_.status AS status_39, p2_.product_variant AS product_variant_40, p2_.engagement_method AS engagement_method_41, p2_.config AS config_42, p3_.id AS id_43, p3_.extra_info AS extra_info_44, p3_.active AS active_45, l4_.id AS id_46, l4_.type AS type_47, l4_.name AS name_48, l4_.contact_email AS contact_email_49, l4_.contact_phone AS contact_phone_50, l4_.opening_hours AS opening_hours_51, l4_.alt_opening_hours AS alt_opening_hours_52, l4_.street AS street_53, l4_.number AS number_54, l4_.number_addition AS number_addition_55, l4_.complement AS complement_56, l4_.neighborhood AS neighborhood_57, l4_.city AS city_58, l4_.province AS province_59, l4_.state AS state_60, l4_.zip AS zip_61, l4_.country AS country_62, p0_.logo_id AS logo_id_63, p0_.hero_image_id AS hero_image_id_64, p0_.introduction_image_id AS introduction_image_id_65, p0_.hkz_qr_code_id AS hkz_qr_code_id_66, p0_.main_location_id AS main_location_id_67, p0_.specialist_role_id AS specialist_role_id_68, p0_.main_menu_id AS main_menu_id_69, p0_.theme_id AS theme_id_70, p1_.portal_id AS portal_id_71, p1_.product_id AS product_id_72, p2_.image_id AS image_id_73, p2_.downloadable_form_id AS downloadable_form_id_74, p3_.portal_id AS portal_id_75, p3_.location_id AS location_id_76 FROM portal p0_ LEFT JOIN portal_product p1_ ON p0_.id = p1_.portal_id LEFT JOIN product p2_ ON p1_.product_id = p2_.id LEFT JOIN portal_location p3_ ON p0_.id = p3_.portal_id LEFT JOIN location l4_ ON p3_.location_id = l4_.id WHERE p0_.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.alias AS alias_2, p0_.domain AS domain_3, p0_.business AS business_4, p0_.status AS status_5, p0_.name_in_logo AS name_in_logo_6, p0_.slogan AS slogan_7, p0_.introduction AS introduction_8, p0_.usp_title AS usp_title_9, p0_.usps AS usps_10, p0_.about_us AS about_us_11, p0_.contact_email AS contact_email_12, p0_.contact_phone AS contact_phone_13, p0_.contact_phone_notes AS contact_phone_notes_14, p0_.agb_code AS agb_code_15, p0_.facebook_slug AS facebook_slug_16, p0_.instagram_slug AS instagram_slug_17, p0_.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_18, p0_.terms_and_conditions AS terms_and_conditions_19, p0_.privacy_policy AS privacy_policy_20, p0_.settings AS settings_21, p0_.gtm_id AS gtm_id_22, p1_.id AS id_23, p1_.short_description_override AS short_description_override_24, p1_.medium_description_override AS medium_description_override_25, p1_.long_description_override AS long_description_override_26, p1_.extra_info AS extra_info_27, p1_.active AS active_28, p2_.id AS id_29, p2_.name AS name_30, p2_.short_description AS short_description_31, p2_.medium_description AS medium_description_32, p2_.long_description AS long_description_33, p2_.cta_label AS cta_label_34, p2_.icon AS icon_35, p2_.page_content AS page_content_36, p2_.meta_title AS meta_title_37, p2_.meta_description AS meta_description_38, p2_.status AS status_39, p2_.product_variant AS product_variant_40, p2_.engagement_method AS engagement_method_41, p2_.config AS config_42, p3_.id AS id_43, p3_.extra_info AS extra_info_44, p3_.active AS active_45, l4_.id AS id_46, l4_.type AS type_47, l4_.name AS name_48, l4_.contact_email AS contact_email_49, l4_.contact_phone AS contact_phone_50, l4_.opening_hours AS opening_hours_51, l4_.alt_opening_hours AS alt_opening_hours_52, l4_.street AS street_53, l4_.number AS number_54, l4_.number_addition AS number_addition_55, l4_.complement AS complement_56, l4_.neighborhood AS neighborhood_57, l4_.city AS city_58, l4_.province AS province_59, l4_.state AS state_60, l4_.zip AS zip_61, l4_.country AS country_62, p0_.logo_id AS logo_id_63, p0_.hero_image_id AS hero_image_id_64, p0_.introduction_image_id AS introduction_image_id_65, p0_.hkz_qr_code_id AS hkz_qr_code_id_66, p0_.main_location_id AS main_location_id_67, p0_.specialist_role_id AS specialist_role_id_68, p0_.main_menu_id AS main_menu_id_69, p0_.theme_id AS theme_id_70, p1_.portal_id AS portal_id_71, p1_.product_id AS product_id_72, p2_.image_id AS image_id_73, p2_.downloadable_form_id AS downloadable_form_id_74, p3_.portal_id AS portal_id_75, p3_.location_id AS location_id_76 FROM portal p0_ LEFT JOIN portal_product p1_ ON p0_.id = p1_.portal_id LEFT JOIN product p2_ ON p1_.product_id = p2_.id LEFT JOIN portal_location p3_ ON p0_.id = p3_.portal_id LEFT JOIN location l4_ ON p3_.location_id = l4_.id WHERE p0_.id = ?",
    "params": {
        "1": 1
    },
    "types": {
        "1": 1
    }
}
DEBUG 02:55:27 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.alias AS alias_3, t0.domain AS domain_4, t0.business AS business_5, t0.status AS status_6, t0.name_in_logo AS name_in_logo_7, t0.slogan AS slogan_8, t0.introduction AS introduction_9, t0.usp_title AS usp_title_10, t0.usps AS usps_11, t0.about_us AS about_us_12, t0.contact_email AS contact_email_13, t0.contact_phone AS contact_phone_14, t0.contact_phone_notes AS contact_phone_notes_15, t0.agb_code AS agb_code_16, t0.facebook_slug AS facebook_slug_17, t0.instagram_slug AS instagram_slug_18, t0.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_19, t0.terms_and_conditions AS terms_and_conditions_20, t0.privacy_policy AS privacy_policy_21, t0.settings AS settings_22, t0.gtm_id AS gtm_id_23, t0.logo_id AS logo_id_24, t0.hero_image_id AS hero_image_id_25, t0.introduction_image_id AS introduction_image_id_26, t0.hkz_qr_code_id AS hkz_qr_code_id_27, t0.main_location_id AS main_location_id_28, t0.specialist_role_id AS specialist_role_id_29, t0.main_menu_id AS main_menu_id_30, t0.theme_id AS theme_id_31 FROM portal t0 WHERE t0.domain = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.alias AS alias_3, t0.domain AS domain_4, t0.business AS business_5, t0.status AS status_6, t0.name_in_logo AS name_in_logo_7, t0.slogan AS slogan_8, t0.introduction AS introduction_9, t0.usp_title AS usp_title_10, t0.usps AS usps_11, t0.about_us AS about_us_12, t0.contact_email AS contact_email_13, t0.contact_phone AS contact_phone_14, t0.contact_phone_notes AS contact_phone_notes_15, t0.agb_code AS agb_code_16, t0.facebook_slug AS facebook_slug_17, t0.instagram_slug AS instagram_slug_18, t0.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_19, t0.terms_and_conditions AS terms_and_conditions_20, t0.privacy_policy AS privacy_policy_21, t0.settings AS settings_22, t0.gtm_id AS gtm_id_23, t0.logo_id AS logo_id_24, t0.hero_image_id AS hero_image_id_25, t0.introduction_image_id AS introduction_image_id_26, t0.hkz_qr_code_id AS hkz_qr_code_id_27, t0.main_location_id AS main_location_id_28, t0.specialist_role_id AS specialist_role_id_29, t0.main_menu_id AS main_menu_id_30, t0.theme_id AS theme_id_31 FROM portal t0 WHERE t0.domain = ? LIMIT 1",
    "params": {
        "1": "www.v3.pharmanexus.nl"
    },
    "types": {
        "1": 2
    }
}
DEBUG 02:55:27 doctrine Executing statement: SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.alias AS alias_2, p0_.domain AS domain_3, p0_.business AS business_4, p0_.status AS status_5, p0_.name_in_logo AS name_in_logo_6, p0_.slogan AS slogan_7, p0_.introduction AS introduction_8, p0_.usp_title AS usp_title_9, p0_.usps AS usps_10, p0_.about_us AS about_us_11, p0_.contact_email AS contact_email_12, p0_.contact_phone AS contact_phone_13, p0_.contact_phone_notes AS contact_phone_notes_14, p0_.agb_code AS agb_code_15, p0_.facebook_slug AS facebook_slug_16, p0_.instagram_slug AS instagram_slug_17, p0_.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_18, p0_.terms_and_conditions AS terms_and_conditions_19, p0_.privacy_policy AS privacy_policy_20, p0_.settings AS settings_21, p0_.gtm_id AS gtm_id_22, p1_.id AS id_23, p1_.short_description_override AS short_description_override_24, p1_.medium_description_override AS medium_description_override_25, p1_.long_description_override AS long_description_override_26, p1_.extra_info AS extra_info_27, p1_.active AS active_28, p2_.id AS id_29, p2_.name AS name_30, p2_.short_description AS short_description_31, p2_.medium_description AS medium_description_32, p2_.long_description AS long_description_33, p2_.cta_label AS cta_label_34, p2_.icon AS icon_35, p2_.page_content AS page_content_36, p2_.meta_title AS meta_title_37, p2_.meta_description AS meta_description_38, p2_.status AS status_39, p2_.product_variant AS product_variant_40, p2_.engagement_method AS engagement_method_41, p2_.config AS config_42, p3_.id AS id_43, p3_.extra_info AS extra_info_44, p3_.active AS active_45, l4_.id AS id_46, l4_.type AS type_47, l4_.name AS name_48, l4_.contact_email AS contact_email_49, l4_.contact_phone AS contact_phone_50, l4_.opening_hours AS opening_hours_51, l4_.alt_opening_hours AS alt_opening_hours_52, l4_.street AS street_53, l4_.number AS number_54, l4_.number_addition AS number_addition_55, l4_.complement AS complement_56, l4_.neighborhood AS neighborhood_57, l4_.city AS city_58, l4_.province AS province_59, l4_.state AS state_60, l4_.zip AS zip_61, l4_.country AS country_62, p0_.logo_id AS logo_id_63, p0_.hero_image_id AS hero_image_id_64, p0_.introduction_image_id AS introduction_image_id_65, p0_.hkz_qr_code_id AS hkz_qr_code_id_66, p0_.main_location_id AS main_location_id_67, p0_.specialist_role_id AS specialist_role_id_68, p0_.main_menu_id AS main_menu_id_69, p0_.theme_id AS theme_id_70, p1_.portal_id AS portal_id_71, p1_.product_id AS product_id_72, p2_.image_id AS image_id_73, p2_.downloadable_form_id AS downloadable_form_id_74, p3_.portal_id AS portal_id_75, p3_.location_id AS location_id_76 FROM portal p0_ LEFT JOIN portal_product p1_ ON p0_.id = p1_.portal_id LEFT JOIN product p2_ ON p1_.product_id = p2_.id LEFT JOIN portal_location p3_ ON p0_.id = p3_.portal_id LEFT JOIN location l4_ ON p3_.location_id = l4_.id WHERE p0_.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT p0_.id AS id_0, p0_.name AS name_1, p0_.alias AS alias_2, p0_.domain AS domain_3, p0_.business AS business_4, p0_.status AS status_5, p0_.name_in_logo AS name_in_logo_6, p0_.slogan AS slogan_7, p0_.introduction AS introduction_8, p0_.usp_title AS usp_title_9, p0_.usps AS usps_10, p0_.about_us AS about_us_11, p0_.contact_email AS contact_email_12, p0_.contact_phone AS contact_phone_13, p0_.contact_phone_notes AS contact_phone_notes_14, p0_.agb_code AS agb_code_15, p0_.facebook_slug AS facebook_slug_16, p0_.instagram_slug AS instagram_slug_17, p0_.healthcare_contact_email_addresses AS healthcare_contact_email_addresses_18, p0_.terms_and_conditions AS terms_and_conditions_19, p0_.privacy_policy AS privacy_policy_20, p0_.settings AS settings_21, p0_.gtm_id AS gtm_id_22, p1_.id AS id_23, p1_.short_description_override AS short_description_override_24, p1_.medium_description_override AS medium_description_override_25, p1_.long_description_override AS long_description_override_26, p1_.extra_info AS extra_info_27, p1_.active AS active_28, p2_.id AS id_29, p2_.name AS name_30, p2_.short_description AS short_description_31, p2_.medium_description AS medium_description_32, p2_.long_description AS long_description_33, p2_.cta_label AS cta_label_34, p2_.icon AS icon_35, p2_.page_content AS page_content_36, p2_.meta_title AS meta_title_37, p2_.meta_description AS meta_description_38, p2_.status AS status_39, p2_.product_variant AS product_variant_40, p2_.engagement_method AS engagement_method_41, p2_.config AS config_42, p3_.id AS id_43, p3_.extra_info AS extra_info_44, p3_.active AS active_45, l4_.id AS id_46, l4_.type AS type_47, l4_.name AS name_48, l4_.contact_email AS contact_email_49, l4_.contact_phone AS contact_phone_50, l4_.opening_hours AS opening_hours_51, l4_.alt_opening_hours AS alt_opening_hours_52, l4_.street AS street_53, l4_.number AS number_54, l4_.number_addition AS number_addition_55, l4_.complement AS complement_56, l4_.neighborhood AS neighborhood_57, l4_.city AS city_58, l4_.province AS province_59, l4_.state AS state_60, l4_.zip AS zip_61, l4_.country AS country_62, p0_.logo_id AS logo_id_63, p0_.hero_image_id AS hero_image_id_64, p0_.introduction_image_id AS introduction_image_id_65, p0_.hkz_qr_code_id AS hkz_qr_code_id_66, p0_.main_location_id AS main_location_id_67, p0_.specialist_role_id AS specialist_role_id_68, p0_.main_menu_id AS main_menu_id_69, p0_.theme_id AS theme_id_70, p1_.portal_id AS portal_id_71, p1_.product_id AS product_id_72, p2_.image_id AS image_id_73, p2_.downloadable_form_id AS downloadable_form_id_74, p3_.portal_id AS portal_id_75, p3_.location_id AS location_id_76 FROM portal p0_ LEFT JOIN portal_product p1_ ON p0_.id = p1_.portal_id LEFT JOIN product p2_ ON p1_.product_id = p2_.id LEFT JOIN portal_location p3_ ON p0_.id = p3_.portal_id LEFT JOIN location l4_ ON p3_.location_id = l4_.id WHERE p0_.id = ?",
    "params": {
        "1": 1
    },
    "types": {
        "1": 1
    }
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://www.v3.pharmanexus.nl/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:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/v3.pharmanexus.nl/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 /robots.txt HTTP/1.0
Accept:           */*
Accept-Encoding:  gzip, br, zstd, deflate
Connection:       close
Host:             www.v3.pharmanexus.nl
User-Agent:       Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
X-Accel-Internal: /internal-nginx-static-location
X-Php-Ob-Level:   1
X-Real-Ip:        216.73.216.143



  at vendor/symfony-cmf/routing/src/ChainRouter.php:180
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:134)
  at Symfony\Cmf\Component\Routing\ChainRouter->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:126)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:193)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:32)
  at require_once('/var/www/vhosts/v3.pharmanexus.nl/vendor/autoload_runtime.php')
     (public/index.php:5)