https://erp.ourhoneybee.eu/FindConsultant

Exceptions

An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "consultant_profile" as such route does not exist.").

Exceptions 2

Twig\Error\ RuntimeError

  1.                             speaks_content += '<span> &nbsp;' +
  2.                                     '<img class="small_language_img" style="width: 20px; " src="{{ absolute_url(path('dashboard')) }}' + (typeof language_list[languages_data[lol]] === 'undefined' ? 'buddybee_assets/images/flag-2.png' : language_list[languages_data[lol]].image) + '"  alt="flag-2">' +
  3.                                     '&nbsp;' + language_list[languages_data[lol]].name + '</span>'
  4.                         }
  5.                         html += ' <div style="cursor:pointer;" class="consultant-bio d-flex justify-content-between ' + (k != 0 ? ' mt-5' : '') + '"  onclick="window.location.href=\'{{ path('consultant_profile') }}/' + data[k].applicantId + '{{ topicId!=0?('?topicId='~topicId):'' }}\'">' +
  6.                                 '<div class="consultant-bio-left">' +
  7.                                 '<div class="consultant-bio-img">' +
  8.                                 {#((row_here.mainTable.image!=null && row_here.mainTable.image!='')? '<img src="'+row_here.mainTable.image +'" alt="" class="img-fluid" style="154px">':#}
  9.                                 {#'<img src="{{ absolute_url(path('dashboard')) }}buddybee_assets/images/consultant_image_ph_male.png" alt="" class="img-fluid" style="154px">') +#}
  10.                                 {#'<div class="consultant-review">' +                           #}
  1.     }
  2.     public function render(array $context): string
  3.     {
  4.         $content '';
  5.         foreach ($this->yield($context) as $data) {
  6.             $content .= $data;
  7.         }
  8.         return $content;
  9.     }
  1.      *
  2.      * @throws Error if something went wrong like a thrown exception while rendering the template
  3.      */
  4.     public function render($name, array $parameters = [])
  5.     {
  6.         return $this->load($name)->render($parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.     protected function render(string $view, array $parameters = [], Response $response null): Response
  2.     {
  3.         if ($this->container->has('templating') && $this->container->get('templating')->supports($view)) {
  4.             @trigger_error('Using the "templating" service is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  5.             $content $this->container->get('templating')->render($view$parameters);
  6.         } elseif ($this->container->has('twig')) {
  7.             $content $this->container->get('twig')->render($view$parameters);
  8.         } else {
  9.             throw new \LogicException('You can not use the "render" method if the Templating Component or the Twig Bundle are not available. Try running "composer require symfony/twig-bundle".');
  10.         }
Controller->render('@Buddybee/pages/consultancySearchPage.html.twig', array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0)) in src/ApplicationBundle/Modules/Buddybee/Controller/BuddybeePublicController.php (line 2599)
  1.             'page_title' => $ref == '_ADMIN_' 'Meet Admins' 'Find Consultant',
  2.             'ref' => $ref,
  3. //            'page_title' => 'Find Consultant',
  4. //            'consultant' => $consultant,
  5.             'topic' => $topic,
  6.             'topicId' => $topicId,
  7.         ));
  8.     }
  9.     public function EventListPageAction(Request $request)
  10.     {
in vendor/symfony/http-kernel/HttpKernel.php -> ConsultancySearchPageAction (line 169)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app_dev.php (line 30)
  1. Debug::enable();
  2. $kernel = new AppKernel('dev'true);
  3. //$kernel->loadClassCache();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Symfony\Component\Routing\Exception\ RouteNotFoundException

Unable to generate a URL for the named route "consultant_profile" as such route does not exist.

  1.                 }
  2.             } while (false !== $locale strstr($locale'_'true));
  3.         }
  4.         if (!isset($this->compiledRoutes[$name])) {
  5.             throw new RouteNotFoundException(sprintf('Unable to generate a URL for the named route "%s" as such route does not exist.'$name));
  6.         }
  7.         [$variables$defaults$requirements$tokens$hostTokens$requiredSchemes$deprecations] = $this->compiledRoutes[$name] + [=> []];
  8.         foreach ($deprecations as $deprecation) {
in vendor/symfony/routing/Router.php -> generate (line 235)
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function generate(string $name, array $parameters = [], int $referenceType self::ABSOLUTE_PATH)
  5.     {
  6.         return $this->getGenerator()->generate($name$parameters$referenceType);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.      *
  2.      * @return string
  3.      */
  4.     public function getPath($name$parameters = [], $relative false)
  5.     {
  6.         return $this->generator->generate($name$parameters$relative UrlGeneratorInterface::RELATIVE_PATH UrlGeneratorInterface::ABSOLUTE_PATH);
  7.     }
  8.     /**
  9.      * @param string $name
  10.      * @param array  $parameters
  1.                                     '&nbsp;' + language_list[languages_data[lol]].name + '</span>'
  2.                         }
  3.                         html += ' <div style=\"cursor:pointer;\" class=\"consultant-bio d-flex justify-content-between ' + (k != 0 ? ' mt-5' : '') + '\"  onclick=\"window.location.href=\\'";
  4.         // line 600
  5.         yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("consultant_profile");
  6.         yield "/' + data[k].applicantId + '";
  7.         (((!== CoreExtension::compare((isset($context["topicId"]) || array_key_exists("topicId"$context) ? $context["topicId"] : (function () { throw new RuntimeError('Variable "topicId" does not exist.'600$this->source); })()), 0))) ? (yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(("?topicId=" . (isset($context["topicId"]) || array_key_exists("topicId"$context) ? $context["topicId"] : (function () { throw new RuntimeError('Variable "topicId" does not exist.'600$this->source); })())), "html"nulltrue)) : (yield ""));
  8.         yield "\\'\">' +
  9.                                 '<div class=\"consultant-bio-left\">' +
  10.                                 '<div class=\"consultant-bio-img\">' +
in vendor/twig/twig/src/Template.php -> doDisplay (line 360)
  1.             }
  2.             $level ob_get_level();
  3.             ob_start();
  4.             foreach ($this->doDisplay($context$blocks) as $data) {
  5.                 if (ob_get_length()) {
  6.                     $data ob_get_clean().$data;
  7.                     ob_start();
  8.                 }
  1.     }
  2.     public function render(array $context): string
  3.     {
  4.         $content '';
  5.         foreach ($this->yield($context) as $data) {
  6.             $content .= $data;
  7.         }
  8.         return $content;
  9.     }
  1.      *
  2.      * @throws Error if something went wrong like a thrown exception while rendering the template
  3.      */
  4.     public function render($name, array $parameters = [])
  5.     {
  6.         return $this->load($name)->render($parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.     protected function render(string $view, array $parameters = [], Response $response null): Response
  2.     {
  3.         if ($this->container->has('templating') && $this->container->get('templating')->supports($view)) {
  4.             @trigger_error('Using the "templating" service is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  5.             $content $this->container->get('templating')->render($view$parameters);
  6.         } elseif ($this->container->has('twig')) {
  7.             $content $this->container->get('twig')->render($view$parameters);
  8.         } else {
  9.             throw new \LogicException('You can not use the "render" method if the Templating Component or the Twig Bundle are not available. Try running "composer require symfony/twig-bundle".');
  10.         }
Controller->render('@Buddybee/pages/consultancySearchPage.html.twig', array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0)) in src/ApplicationBundle/Modules/Buddybee/Controller/BuddybeePublicController.php (line 2599)
  1.             'page_title' => $ref == '_ADMIN_' 'Meet Admins' 'Find Consultant',
  2.             'ref' => $ref,
  3. //            'page_title' => 'Find Consultant',
  4. //            'consultant' => $consultant,
  5.             'topic' => $topic,
  6.             'topicId' => $topicId,
  7.         ));
  8.     }
  9.     public function EventListPageAction(Request $request)
  10.     {
in vendor/symfony/http-kernel/HttpKernel.php -> ConsultancySearchPageAction (line 169)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app_dev.php (line 30)
  1. Debug::enable();
  2. $kernel = new AppKernel('dev'true);
  3. //$kernel->loadClassCache();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 02:46:25 php User Deprecated: The "Symfony\Component\Debug\DebugClassLoader" class is deprecated since Symfony 4.4, use "Symfony\Component\ErrorHandler\DebugClassLoader" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: The Symfony\Bundle\TwigBundle\Loader\FilesystemLoader class is deprecated since version 4.3 and will be removed in 5.0; use Twig notation for templates instead.
{
    "exception": {}
}
INFO 02:46:25 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "78b7b4"
    },
    "request_uri": "https://ourhoneybee.eu/_pika/78b7b4",
    "method": "GET"
}
INFO 02:46:25 security Populated the TokenStorage with an anonymous Token.
DEBUG 02:46:25 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:46:25 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:46:25 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:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 02:46:25 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:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 02:46:25 php User Deprecated: The "templating.locator" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\Loader\TemplateLocator class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: The "templating.name_parser" service is deprecated since Symfony 4.3 and will be removed in 5.0.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: The Symfony\Bundle\FrameworkBundle\Templating\TemplateNameParser class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.
{
    "exception": {}
}
DEBUG 02:46:25 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 02:46:25 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 02:46:25 request Matched route "_profiler_exception_css".
{
    "route": "_profiler_exception_css",
    "route_parameters": {
        "_route": "_profiler_exception_css",
        "_controller": "web_profiler.controller.exception_panel::stylesheet",
        "token": "78b7b4"
    },
    "request_uri": "https://ourhoneybee.eu/_pika/78b7b4/exception.css",
    "method": "GET"
}
DEBUG 02:46:25 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:46:25 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:46:25 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:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 02:46:25 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:46:25 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:46:25 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:46:25 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.response" to listener "ApplicationBundle\Listener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
INFO 02:46:25 request Matched route "_profiler_search_bar".
{
    "route": "_profiler_search_bar",
    "route_parameters": {
        "_route": "_profiler_search_bar",
        "_controller": "web_profiler.controller.profiler::searchBarAction"
    },
    "request_uri": "https://ourhoneybee.eu/_pika/search_bar",
    "method": "GET"
}
DEBUG 02:46:25 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:46:25 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:46:25 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:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 02:46:25 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:46:25 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:46:25 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:46:25 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.response" to listener "ApplicationBundle\Listener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 02:46:25 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
INFO 02:46:25 request Matched route "_profiler_exception".
{
    "route": "_profiler_exception",
    "route_parameters": {
        "_route": "_profiler_exception",
        "_controller": "web_profiler.controller.exception_panel::body",
        "token": "78b7b4"
    },
    "request_uri": "https://ourhoneybee.eu/_pika/78b7b4/exception",
    "method": "GET"
}
DEBUG 02:46:25 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:46:25 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:46:25 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:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 02:46:25 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:46:25 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:46:25 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:46:25 event Notified event "kernel.controller" to listener "ApplicationBundle\Listener\SessionListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "ApplicationBundle\\Listener\\SessionListener::onKernelController"
}
DEBUG 02:46:25 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:46:25 event Notified event "kernel.controller" to listener "Nzo\UrlEncryptorBundle\Annotations\AnnotationResolver::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Nzo\\UrlEncryptorBundle\\Annotations\\AnnotationResolver::onKernelController"
}
DEBUG 02:46:25 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 02:46:25 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}

Stack Traces 2

[2/2] RuntimeError

Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "consultant_profile" as such route does not exist.").

  at src/ApplicationBundle/Modules/Buddybee/Resources/views/pages/consultancySearchPage.html.twig:600
  at Twig\Template->yield(array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz'))
     (vendor/twig/twig/src/Template.php:335)
  at Twig\Template->render(array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0))
     (vendor/symfony/twig-bridge/TwigEngine.php:54)
  at Symfony\Bridge\Twig\TwigEngine->render('@Buddybee/pages/consultancySearchPage.html.twig', array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0))
     (vendor/symfony/framework-bundle/Controller/ControllerTrait.php:233)
  at Symfony\Bundle\FrameworkBundle\Controller\Controller->render('@Buddybee/pages/consultancySearchPage.html.twig', array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0))
     (src/ApplicationBundle/Modules/Buddybee/Controller/BuddybeePublicController.php:2599)
  at ApplicationBundle\Modules\Buddybee\Controller\BuddybeePublicController->ConsultancySearchPageAction(object(Request), '')
     (vendor/symfony/http-kernel/HttpKernel.php:169)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:81)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app_dev.php:30)                

[1/2] RouteNotFoundException

Symfony\Component\Routing\Exception\RouteNotFoundException:
Unable to generate a URL for the named route "consultant_profile" as such route does not exist.

  at vendor/symfony/routing/Generator/CompiledUrlGenerator.php:50
  at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate('consultant_profile', array(), 1)
     (vendor/symfony/routing/Router.php:235)
  at Symfony\Component\Routing\Router->generate('consultant_profile', array(), 1)
     (vendor/symfony/twig-bridge/Extension/RoutingExtension.php:59)
  at Symfony\Bridge\Twig\Extension\RoutingExtension->getPath('consultant_profile')
     (var/cache/dev/twig/61/61b979655eb2fa80926ce9b5ad8ab8636a6b4b52949b2e7b60dc6af16672781e.php:928)
  at __TwigTemplate_159381c2a3163abfc304112f98b3b07dbbf730173e55e233c4a59da0891a5aca->doDisplay(array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz', 'countries_data' => array(), 'language_list' => array(), 'THIS_USER_ID' => 0), array())
     (vendor/twig/twig/src/Template.php:360)
  at Twig\Template->yield(array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0, 'session' => array('appValiditySeconds' => '_UNSET_', 'devAdminMode' => 0, 'isMobile' => false), 'url_get' => array(), 'UserConstants' => array('ACTIVE_USER' => 1, 'INACTIVE_USER' => 0, 'USER_TYPE_GENERAL' => 2, 'USER_TYPE_SYSTEM' => 1, 'USER_TYPE_SUPPLIER' => 3, 'USER_TYPE_CLIENT' => 4, 'USER_TYPE_MANAGEMENT_USER' => 5, 'USER_TYPE_ENTITY_USER_GROUP_OWNER' => 6, 'USER_TYPE_ENTITY_USER_GENERAL_USER' => 7, 'USER_TYPE_APPLICANT' => 8, 'USER_TYPE_COLLABORATOR' => 9, 'USER_ID' => 'userId', 'APPLICANT_ID' => 'applicantId', 'LAST_SETTINGS_UPDATED_TS' => 'last_settings_updated_ts', 'SUPPLIER_ID' => 'supplierId', 'CLIENT_ID' => 'clientId', 'USER_TYPE' => 'userType', 'USER_IMAGE' => 'userImage', 'USER_NAME' => 'userName', 'USER_EMAIL' => 'userEmail', 'USER_LOGIN_ID' => 'userLoginId', 'USER_EMPLOYEE_ID' => 'userEmployeeId', 'USER_CURRENT_TASK_ID' => 'userCurrentTaskId', 'USER_CURRENT_PLANNING_ITEM_ID' => 'currentPlanningItemId', 'USER_HOLIDAY_LIST_CURRENT_MONTH' => 'userHolidayListCurrentMonth', 'USER_HOLIDAY_CALENDAR_ID' => 'userHolidayCalendarId', 'USER_DEFAULT_ROUTE' => 'userDefaultRoute', 'USER_POSITION_LIST' => 'userPositionList', 'USER_CURRENT_POSITION' => 'userCurrentPosition', 'USER_COMPANY_ID' => 'userCompanyId', 'USER_COMPANY_LOCALE' => 'userCompanyLocale', 'USER_COMPANY_ID_LIST' => 'userCompanyIdList', 'USER_COMPANY_NAME_LIST' => 'userCompanyNameList', 'USER_COMPANY_IMAGE_LIST' => 'userCompanyImageList', 'PRODUCT_NAME_DISPLAY_TYPE' => 'productNameDisplayType', 'USER_APP_ID' => 'userAppId', 'USER_APP_ID_LIST' => 'appIdList', 'USER_NOTIFICATION_ENABLED' => 'userNotificationEnabled', 'USER_NOTIFICATION_SERVER' => 'userNotificationServer', 'USER_CLIENT_LEVEL' => 'userClientLevel', 'USER_CLIENT_BRANCH_IDS' => 'userClientBranchIds', 'USER_CLIENT_WAREHOUSE_IDS' => 'userClientBranchIds', 'USER_COMPANY_DARK_VIBRANT_LIST' => 'userCompanyDarkVibrantList', 'USER_COMPANY_VIBRANT_LIST' => 'userCompanyVibrantList', 'USER_COMPANY_LIGHT_VIBRANT_LIST' => 'userCompanyLightVibrantList', 'USER_OAUTH_IMAGE' => 'oAuthImage', 'APPLICATION_SECRET' => 'applicationSecret', 'FIRST_LOGIN_FLAG' => 'firstLogin', 'USER_ROUTE_LIST' => 'userRouteList', 'USER_PROHIBIT_LIST' => 'userProhibitList', 'USER_GOC_ID' => 'userGocId', 'USER_DB_NAME' => 'gocDbName', 'USER_DB_USER' => 'gocDbUser', 'USER_DB_PASS' => 'gocDbPass', 'USER_DB_HOST' => 'gocDbHost', 'ALL_MODULE_ACCESS_FLAG' => 'allModuleAccessFlag', 'IS_CONSULTANT' => 'isConsultant', 'IS_BUDDYBEE_RETAILER' => 'isBuddybeeRetailer', 'BUDDYBEE_RETAILER_LEVEL' => 'buddybeeRetailerLevel', 'BUDDYBEE_ADMIN_LEVEL' => 'buddybeeAdminLevel', 'IS_BUDDYBEE_ADMIN' => 'isBuddybeeAdmin', 'IS_BUDDYBEE_MODERATOR' => 'isBuddybeeModerator', 'USER_TOKEN' => 'token', 'DATEV_TOKEN' => 'DATEV_ACCESS_TOKEN', 'ERROR_TOKEN_EXPIRED' => '900', 'ERROR_USER_NOT_FOUND' => '901', 'ERROR_USER_EXISTS_ALREADY' => '902', 'ERROR_INVALID_SESSION' => '903', 'ERROR_INVALID_API_KEY' => '904', 'ERROR_INVALID_SYSTEM_INTEGRITY' => '905', 'OTP_ACTION_NONE' => 0, 'OTP_ACTION_FORGOT_PASSWORD' => 1, 'OTP_ACTION_CONFIRM_WITHDRAW_REQUEST' => 2, 'OTP_ACTION_CONFIRM_EMAIL' => 3, 'SESSION_SALT' => 'sessionSalt', 'USER_TYPE_NAME' => 'userTypeName'), 'BuddybeeConstant' => array('COIN_GENERAL_MULT' => 100, 'PER_SESSION_MINUTE' => 20, 'BETWEEN_SESSION_MINUTE' => 10, 'BEECOIN_VALUE_EURO' => 0.5, 'BEECOIN_VALUE_BDT' => 33, 'PROMO_MAX_DISCOUNT_PERCENTAGE_SINGLE' => 20, 'PROMO_MAX_DISCOUNT_AMOUNT_SINGLE' => 30, 'REFERER_GETS_DISCOUNT_PERCENTAGE_PER_REFER' => 0, 'REFERER_GETS_COIN_PER_REFER' => 34, 'CONSULTANT_REMUNERATION_MULTIPLIER' => 0.2, 'ERROR_NO_SCHEDULE_FOUND' => '802', 'ENTITY_INVOICE_TYPE_PAYMENT_TO_BUDDYBEE' => 1, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_BUDDYBEE' => 2, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT' => 3, 'ENTITY_INVOICE_TYPE_TRANSFER_IN' => 4, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_MEETING_TO_CONSULTANT' => 5, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_MEETING_FOR_STUDENT' => 6, 'ENTITY_INVOICE_TYPE_STUDENT_PURCHASE_COIN_FROM_RETAILER' => 7, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_BUDDYBEE' => 8, 'ENTITY_INVOICE_TYPE_PAYMENT_TO_HONEYBEE' => 11, 'ENTITY_INVOICE_TYPE_RECEIVE_FROM_HONEYBEE' => 12, 'ENTITY_INVOICE_TYPE_TRANSFER_OUT_HONEYBEE' => 13, 'ENTITY_INVOICE_TYPE_TRANSFER_IN_HONEYBEE' => 14, 'ENTITY_INVOICE_TYPE_PAYMENT_FOR_WORK_TO_FREELANCER' => 15, 'ENTITY_INVOICE_TYPE_CONSUME_COIN_FOR_SUBSCRIPTION_FOR_USER' => 16, 'ENTITY_INVOICE_TYPE_USER_PURCHASE_COIN_FROM_HONEYBEE_RETAILER' => 17, 'ENTITY_INVOICE_TYPE_RETAILER_PURCHASE_COIN_FROM_HONEYBEE' => 18, 'ENTITY_INVOICE_STAGE_INITIATED' => 3, 'ENTITY_INVOICE_STAGE_FAILED' => 0, 'ENTITY_INVOICE_STAGE_COMPLETED' => 1, 'ENTITY_INVOICE_STAGE_CANCELLED' => 5, 'ENTITY_INVOICE_STAGE_UNDER_PROCESS' => 2), 'TaskConstant' => array('ACTIVE' => 1, 'CLOSED' => 0, 'TYPE_EMERGENCY' => 1, 'TYPE_IMPORTANT' => 2, 'TYPE_NORMAL' => 3), 'TicketConstant' => array('TICKET_TYPE_SERVICE_TICKET' => 1, 'TICKET_TYPE_TODO' => 2, 'TICKET_TYPE_TODO_REPLY' => 3, 'TICKET_TYPE_QUERY' => 4, 'TICKET_TYPE_DEVELOPMENT' => 5, 'TICKET_TYPE_SUPPLIER' => 6, 'TICKET_TYPE_CLIENT' => 7, 'URGENCY_EMERGENCY' => 1, 'URGENCY_IMPORTANT' => 2, 'URGENCY_NORMAL' => 3), 'globalReportTypeList' => array('sales_by_invoice' => 'Sales Based on Billing', 'sales_by_client' => 'Customer Sales', 'sales_by_sales_person' => 'Sales Based on Sales Representatives', 'sales_by_supervisor' => 'Sales Based on Sales Supervisor', 'sales_by_client_type' => 'Categorized Sales', 'sales_by_region' => 'Regional Sales', 'sales_by_geographical_region' => 'Geographical Sales', 'due_by_client' => 'Receivables'), 'enabled_report_types' => array('pika' => 'chu'), 'app' => object(AppVariable), 'full_js_included' => 0, 'kernel_root_dir' => '/home/u405565514/domains/ourhoneybee.eu/public_html/honeybee_main/app', 'system_type' => '_CENTRAL_', 'notification_enabled' => 1, 'email_enabled' => 1, 'entity_group_enabled' => 1, 'notification_server' => 'https://ourhoneybee.xyz'))
     (vendor/twig/twig/src/Template.php:335)
  at Twig\Template->render(array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0))
     (vendor/symfony/twig-bridge/TwigEngine.php:54)
  at Symfony\Bridge\Twig\TwigEngine->render('@Buddybee/pages/consultancySearchPage.html.twig', array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0))
     (vendor/symfony/framework-bundle/Controller/ControllerTrait.php:233)
  at Symfony\Bundle\FrameworkBundle\Controller\Controller->render('@Buddybee/pages/consultancySearchPage.html.twig', array('page_title' => 'Find Consultant', 'ref' => '', 'topic' => array(), 'topicId' => 0))
     (src/ApplicationBundle/Modules/Buddybee/Controller/BuddybeePublicController.php:2599)
  at ApplicationBundle\Modules\Buddybee\Controller\BuddybeePublicController->ConsultancySearchPageAction(object(Request), '')
     (vendor/symfony/http-kernel/HttpKernel.php:169)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:81)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app_dev.php:30)