Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#3171 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= \sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/v3.pharmanexus.nl/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
in
vendor/symfony-cmf/routing/src/ChainRouter.php
(line 180)
$info = $request? "this request\n$request": "url '$pathinfo'";throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");}/*** {@inheritdoc}*
in
vendor/symfony-cmf/routing/src/ChainRouter.php
->
doMatch
(line 134)
** Loops through all routes and tries to match the passed request.*/public function matchRequest(Request $request): array{return $this->doMatch($request->getPathInfo(), $request);}/*** Loops through all routers and tries to match the passed request or url.*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 101)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 115)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 206)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 126)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 159)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 193)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/v3.pharmanexus.nl/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
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)
|